From 0debd50db3e24427fed4f82eabcf61938ed035f1 Mon Sep 17 00:00:00 2001 From: gmarik Date: Sat, 23 Jul 2011 18:46:31 -0500 Subject: [PATCH] when pulling use remote uri; also merge defaults --- autoload/vundle/installer.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/vundle/installer.vim b/autoload/vundle/installer.vim index 1ec1c10..f724ea2 100644 --- a/autoload/vundle/installer.vim +++ b/autoload/vundle/installer.vim @@ -73,7 +73,7 @@ func! s:sync(bang, bundle) abort if isdirectory(git_dir) if !(a:bang) | return [0, 'skip'] | endif lcd `=a:bundle.path()` - let cmd = 'git pull' + let cmd = 'git pull '.a:bundle.uri.' master:master' else let cmd = 'git clone '.a:bundle.uri.' '.shellescape(a:bundle.path()) endif