mirror of
https://github.com/junegunn/vim-plug.git
synced 2024-12-19 10:35:38 -07:00
Fix #455 - git config should read local .git/config instead of $GIT_CONFIG
This commit is contained in:
parent
82ac9d9075
commit
36973defbd
6
plug.vim
6
plug.vim
@ -1424,7 +1424,7 @@ class Plugin(object):
|
|||||||
self.write(Action.DONE, self.name, result[-1:])
|
self.write(Action.DONE, self.name, result[-1:])
|
||||||
|
|
||||||
def repo_uri(self):
|
def repo_uri(self):
|
||||||
cmd = 'git rev-parse --abbrev-ref HEAD 2>&1 && git config remote.origin.url'
|
cmd = 'git rev-parse --abbrev-ref HEAD 2>&1 && git config -f .git/config remote.origin.url'
|
||||||
command = Command(cmd, self.args['dir'], G_TIMEOUT,)
|
command = Command(cmd, self.args['dir'], G_TIMEOUT,)
|
||||||
result = command.execute(G_RETRIES)
|
result = command.execute(G_RETRIES)
|
||||||
return result[-1]
|
return result[-1]
|
||||||
@ -1725,7 +1725,7 @@ function! s:update_ruby()
|
|||||||
ok, result =
|
ok, result =
|
||||||
if exists
|
if exists
|
||||||
chdir = "#{cd} #{iswin ? dir : esc(dir)}"
|
chdir = "#{cd} #{iswin ? dir : esc(dir)}"
|
||||||
ret, data = bt.call "#{chdir} && git rev-parse --abbrev-ref HEAD 2>&1 && git config remote.origin.url", nil, nil, nil
|
ret, data = bt.call "#{chdir} && git rev-parse --abbrev-ref HEAD 2>&1 && git config -f .git/config remote.origin.url", nil, nil, nil
|
||||||
current_uri = data.lines.to_a.last
|
current_uri = data.lines.to_a.last
|
||||||
if !ret
|
if !ret
|
||||||
if data =~ /^Interrupted|^Timeout/
|
if data =~ /^Interrupted|^Timeout/
|
||||||
@ -1818,7 +1818,7 @@ endfunction
|
|||||||
function! s:git_validate(spec, check_branch)
|
function! s:git_validate(spec, check_branch)
|
||||||
let err = ''
|
let err = ''
|
||||||
if isdirectory(a:spec.dir)
|
if isdirectory(a:spec.dir)
|
||||||
let result = s:lines(s:system('git rev-parse --abbrev-ref HEAD 2>&1 && git config remote.origin.url', a:spec.dir))
|
let result = s:lines(s:system('git rev-parse --abbrev-ref HEAD 2>&1 && git config -f .git/config remote.origin.url', a:spec.dir))
|
||||||
let remote = result[-1]
|
let remote = result[-1]
|
||||||
if v:shell_error
|
if v:shell_error
|
||||||
let err = join([remote, 'PlugClean required.'], "\n")
|
let err = join([remote, 'PlugClean required.'], "\n")
|
||||||
|
Loading…
Reference in New Issue
Block a user