Browse Source

Change line 396 to a git reset --hard link, instead of git checkout.

Signed-off-by: Kamran Mackey <kamranm1200@gmail.com>
revert-616-fix-github-url
Kamran Mackey 11 years ago
parent
commit
de87829a49
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      autoload/vundle/installer.vim

+ 1
- 1
autoload/vundle/installer.vim View File

@ -393,7 +393,7 @@ func! s:make_sync_command(bang, bundle) abort
\ 'git fetch',
\ 'git reset --hard origin/HEAD',
\ 'git submodule update --init --recursive',
\ 'git checkout '.a:bundle.revision,
\ 'git reset --hard origin/'.a:bundle.revision,
\ ]
let cmd = join(cmd_parts, ' && ')
let cmd = vundle#installer#shellesc_cd(cmd)


Loading…
Cancel
Save