Merge branch 'fast-git' of github.com:mattn/vim-plug into fast-git

This commit is contained in:
Yasuhiro Matsumoto 2020-09-01 13:21:31 +09:00
commit 28ede474b9
No known key found for this signature in database
GPG Key ID: 622DE34DC490584B

View File

@ -193,6 +193,7 @@ function! s:git_get_revision(dir) abort
endif
endfor
endif
return l:line
catch
endtry
return ''
@ -208,7 +209,7 @@ function! s:git_get_branch(dir) abort
if line =~# '^ref: refs/heads/'
return line[16:]
endif
return ''
return 'HEAD'
catch
return ''
endtry