git clone 提示输入git@xxx的密码

Posted kuang17

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git clone 提示输入git@xxx的密码相关的知识,希望对你有一定的参考价值。

如下:

suse:~/ecox # git clone [email protected]:ecox/ecox.git
正克隆到 ‘ecox‘...
[email protected]‘s password:

 但是我都不知道密码是啥,跟登录git库的密码不一样。

 

然后使用http的方式,报一个错误:

use:~/ecox # git clone https://vcs.in.ww-it.cn/ecox/ecox.git
正克隆到 ‘ecox‘...
fatal: unable to access ‘https://vcs.in.ww-it.cn/ecox/ecox.git/‘: SSL certificate problem: unable to get local issuer certificate

 

提示SSL证书错误。发现说这个错误并不重要是系统证书的问题,系统判断到这个行为会造成不良影响,所以进行了阻止,只要设置跳过SSL证书验证就可以了,那么用命令 :

 git config --global http.sslVerify false

 

然后可以了,但是还是会要用户名和密码:

suse:~/ecox # git clone https://vcs.in.ww-it.cn/ecox/ecox.git
正克隆到 ‘ecox‘...
Username for ‘https://vcs.in.ww-it.cn‘: xxx
Password for ‘https://[email protected]‘:
remote: HTTP Basic: Access denied
fatal: Authentication failed for ‘https://vcs.in.ww-it.cn/ecox/ecox.git/‘

 

回到了老问题,于是想到设置git账户的密码,改一下试试?

在准备改密码的过程中,发现用户下面可以配置ssh-key,于是尝试配一下ssh-key来让ssh信任:

use:~/ecox # ssh-keygen -t rsa
Generating public/private rsa key pair.
Enter file in which to save the key (/root/.ssh/id_rsa):
Enter passphrase (empty for no passphrase):

 

最后果然不需要再输入密码了,成功clone项目,所以在这里记录一下,方便以后查阅。

 

以上是关于git clone 提示输入git@xxx的密码的主要内容,如果未能解决你的问题,请参考以下文章

解决git push/pull 每次都要输入密码ssh-keygen

Git 使用

linux下每次git clone不需输入账号密码的方法

git clone fatal

git clone 不询问用户密码

gitlab配置ssh key后,还是需要输入密码,git clone http可以。