Vundle没有验证github

时间:2014-09-20 04:28:16

标签: authentication vim github vundle

我在~/.vimrc上有这个。

set nocompatible              " be iMproved, required
filetype off                  " required

set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'gmarik/Vundle.vim'
Plugin 'crooloose/nerdtree.git'
Plugin 'tomasr/molokai'
Plugin 'kien/ctrlp'
Plugin 'bling/vim-airline'
syntax enable
colorscheme molokai

非常,直截了当。我有几个插件我想用Vundle安装,但每当我:PluginInstall它提示我输入github用户名和密码。我知道我的用户名和密码是正确的,但它仍然无法进行身份验证。我在github btw上有双向身份验证。我认为不重要。 但是,我收到以下错误。

[2014-09-19 23:18:14] 
[2014-09-19 23:18:14] Plugin crooloose/nerdtree.git
[2014-09-19 23:18:14] $ git clone --recursive 'https://github.com/crooloose/nerdtree.git' '/home/shriek/.vim/bundle/nerdtree'
[2014-09-19 23:18:14] > Cloning into '/home/shriek/.vim/bundle/nerdtree'...
[2014-09-19 23:18:14] > remote: Invalid username or password.
[2014-09-19 23:18:14] > fatal: Authentication failed for 'https://github.com/crooloose/nerdtree.git/'
[2014-09-19 23:18:14] > 
[2014-09-19 23:19:51] 
[2014-09-19 23:19:51] Plugin kien/ctrlp
[2014-09-19 23:19:51] $ git clone --recursive 'https://github.com/kien/ctrlp.git' '/home/shriek/.vim/bundle/ctrlp'
[2014-09-19 23:19:51] > Cloning into '/home/shriek/.vim/bundle/ctrlp'...
[2014-09-19 23:19:51] > remote: Invalid username or password.
[2014-09-19 23:19:51] > fatal: Authentication failed for 'https://github.com/kien/ctrlp.git/'
[2014-09-19 23:19:51] > 
[2014-09-19 23:19:52] 
[2014-09-19 23:19:52] Helptags:
[2014-09-19 23:19:52] :helptags /home/shriek/.vim/bundle/Vundle.vim/doc
[2014-09-19 23:19:52] :helptags /home/shriek/.vim/bundle/vim-airline/doc
[2014-09-19 23:19:52] Helptags: 2 plugins processed

我甚至尝试通过执行ssh -T git@github.com来连接到github Hi shriek! You've successfully authenticated, but GitHub does not provide shell access.

所以,我有点迷失在发生的事情上。帮助

1 个答案:

答案 0 :(得分:12)

也许这是你的插件中声明的url中的一个简单错误(你试图克隆)

https://github.com/crooloose/nerdtree.git不存在 https://github.com/scrooloose/nerdtree.git确实如此。

类似地:

https://github.com/kien/ctrlp不存在 https://github.com/kien/ctrlp.vim确实

通过在~/.vimrc中声明正确的用户名和回购名称,您应该在克隆所述插件时避免这些错误。