我厌倦了为vim安装bundle。 我输入:BundleInstall,似乎无法安装
Bundle 'git://git.wincent.com/command-t.git' |~
Bundle 'file:///Users/gmarik/path/to/plugin'
日志显示
[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.^@
如何解决?
答案 0 :(得分:10)
发生这两个错误是因为您误解了Vundle安装。 您在GitHub仓库(https://github.com/gmarik/vundle#about)上看到的是示例配置。
由于您无法访问它们,因此您不需要提供错误的两行(一个可能是私有GIT而另一个是本地文件),所以只需删除{{1 }}
答案 1 :(得分:0)
对于第一个,您可以尝试指向github镜像: https://github.com/wincent/Command-T.git 对于第二个,除非您正在开发自己的vim插件,只需将其注释或删除即可。