Github无法远程拉取仓库“Permission denied (publickey). fatal: Could not read from remote repository”的解决方案

一、使用SSH出现问题

博主在github上下载tiny face的的源代码的时候,遇到git clone命令为:

git clone --recursive [email protected]:peiyunh/tiny.git

而当我在ternimal下执行这条语句的时候,出现错误:

Permission denied (publickey). fatal:Could not read from remote repository. Please make sure you have the correct access rights and the repository exists.

二、问题分析

其实执行命令:git clone [email protected]:peiyunh/tiny.git 是没有问题的(不加--recursive参数),于是百度了一番,我理解的是原因是由于你在本地(或者服务器上)没有生成ssh key,你可以在ternimal下依次执行:

cd ~/.ssh
ls

查看是否有文件id_rsa以及文件id_rsa.pub,如下图所示:(我的已经生成了,所以我ls后会显示。)

Github无法远程拉取仓库“Permission denied (publickey). fatal: Could not read from remote repository”的解决方案_第1张图片

三、解决方案

下面记录下解决办法:

1)首先,如果你没有ssh key的话,在ternimal下输入命令:

【注意】:将 [email protected] 改为自己的邮箱

ssh-keygen -t rsa -C "[email protected]" # [email protected]改为自己的邮箱

途中会让你输入密码啥的,不需要管,一路回车即可,会生成你的ssh key。

(注意:如果重新生成的话会覆盖之前的ssh key.)

Github无法远程拉取仓库“Permission denied (publickey). fatal: Could not read from remote repository”的解决方案_第2张图片

2)然后在ternimal下执行命令:

ssh -v [email protected]

最后两句会出现:No more authentication methods to try.  Permission denied (publickey).

3)这时候再在ternimal下输入: 

ssh-agent -s

然后会提示类似的信息:

SSH_AUTH_SOCK=/tmp/ssh-GTpABX1a05qH/agent.404; export SSH_AUTH_SOCK;  

SSH_AGENT_PID=13144; export SSH_AGENT_PID;  

echo Agent pid 13144;

4)接着再输入:

ssh-add ~/.ssh/id_rsa

这时候应该会提示:

Identity added: ...(这里是一些ssh key文件路径的信息)

【注意】:如果出现错误提示:

Could not open a connection to your authentication agent.

请执行命令:

eval `ssh-agent -s`

之后,继续执行命令

ssh-add ~/.ssh/id_rsa

这时候一般没问题啦。

5)打开你刚刚生成的 id_rsa.pub,将里面的内容复制,进入你的github账号,在settings下,SSH and GPG keys下new SSH key,title随便取一个名字,再将id_rsa.pub里的内容复制到Key中,完成后Add SSH Key。

Github无法远程拉取仓库“Permission denied (publickey). fatal: Could not read from remote repository”的解决方案_第3张图片

Github无法远程拉取仓库“Permission denied (publickey). fatal: Could not read from remote repository”的解决方案_第4张图片

6)最后一步,验证Key

在ternimal下输入命令:

ssh -T [email protected]

提示:Hi xxx! You've successfully authenticated, but GitHub does not provide shell access.

这时候你的问题就解决啦,可以使用命令 git clone [email protected]:peiyunh/tiny.git 去下载你的代码啦。

版权声明:

作者:王老头
出处:http://www.cnblogs.com/wmr95/p/7852832.html

你可能感兴趣的:(github)