我按照this教程在github上生成SSH密钥:
在上面链接教程的第5步,我输入ssh -T git@github.com
之后我应该看到这个:
The authenticity of host 'github.com (207.97.227.239)' can't be established.
# RSA key fingerprint is 16:27:ac:a5:76:28:2d:36:63:1b:56:4d:eb:df:a6:48.
# Are you sure you want to continue connecting (yes/no)?
但是,我看到了这个:
Agent admitted failure to sign using the key.
Permission denied (publickey).
然后,当我尝试使用git push -u origin master
将文件推送到存储库时,我得到了这个:
Agent admitted failure to sign using the key.
Permission denied (publickey).
fatal: The remote end hung up unexpectedly
我认为问题在于设置SSH密钥。 我怎样才能解决这个问题?
我正在使用Linux。
答案 0 :(得分:5)
在googleing之后,我发现大多数可能的机会是你的密钥已损坏。
你可以尝试的事情是......
和ssh-add
也解决了很多人的问题ssh-add ~/.ssh/id_rsa
尝试注销并登录 或
听到更多可以尝试的事情http://sampathm.blogspot.in/2011/06/agent-admitted-failure-to-sign-using.html 和 SSH cannot authenticate to git@github.com 希望这个帮助