Push failed
Warning: Permanently added the RSA host key for IP address 'xx.74.xxx.119' to the list of known hosts.
git@github.com: Permission denied (publickey).
Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
解决方案:
ssh-keygen -t rsa -C "xxxx";xxxx为github的账户名
Enter file in which to save the key ("当前所在路径"): “给文件起个名字”
这里随便起一个名字,这样问题就出来了,你起的这个名字没有和ssh内设定的名字保持一致,所以使用命令
ssh -T git@github.com
的时候报出Permission denied (publickey).这个错误
当出现这个问题时,有两个比较简单的解决办法:
给文件起名字的时候使用 ‘ id_rsa ’ 这个名字
如果亲非要自己取名子,那就使用
ssh-add ~/.ssh/你的名字
将自己起的名字加入到ssh中
这样再使用
ssh -T git@github.com
就会看到你想要的效果了。
注:在生成密钥的时候,请在 “ ~/.ssh/ ”目录下操作。或者生成后把文件移动到“ ~/.ssh/ ”目录下。