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