Error installing bundle for vim

I am tired of installing the package for vim. I enter: BundleInstall and it seems that it is not possible to install

Bundle 'git://git.wincent.com/command-t.git'                         |~ 
Bundle 'file:///Users/gmarik/path/to/plugin'    

The magazine shows that

[131205 15:35:35] Bundle git://git.wincent.com/command-t.git               |~                                                                         
[131205 15:35:35] $ git clone --recursive 'git://git.wincent.com/command-t.|~                                                                         
git' '/home/p/.vim/bundle/command-t'                                       |~                                                                         
[131205 15:35:35] > fatal: read error: Connection reset by peer^@Cloning in|~                                                                         
to '/home/p/.vim/bundle/command-t'...^@                                    |~                                                                         
[131205 15:35:36]                                                          |~                                                                         
[131205 15:35:36] Bundle file:///Users/gmarik/path/to/plugin               |~                                                                         
[131205 15:35:36] $ git clone --recursive 'file:///Users/gmarik/path/to/plu|~                                                                         
gin' '/home/p/.vim/bundle/plugin'                                          |~                                                                         
[131205 15:35:36] > Cloning into '/home/p/.vim/bundle/plugin'...^@fatal: '/|~                                                                         
Users/gmarik/path/to/plugin' does not appear to be a git repository^@fatal:|~                                                                         
 Could not read from remote repository.^@^@Please make sure you have the co|~                                                                         
rrect access rights^@and the repository exists.^@      

How to fix it?

+4
source share
2 answers

These two errors occur because you misunderstood the installation of Vundle. What you see in the GitHub repository ( https://github.com/gmarik/vundle#about ) is a sample .

You do not need two lines that give you errors, since you do not have access to them (perhaps a private GIT, and the other a local file), so just delete these lines in .vimrc.

+10
source

All Articles