最近,我在 Github.com 上注册了一个免费计划。我按照他们的说明生成 ssh 密钥以添加到我的帐户中。但是,当我尝试时ssh -v git@github.com
,我收到此错误:
debug1: Server accepts key: pkalg ssh-rsa blen 277
Agent admitted failure to sign using the key.
debug1: Trying private key: /home/phuongnd08/.ssh/identity
debug1: Trying private key: /home/phuongnd08/.ssh/id_dsa
debug1: No more authentication methods to try.
Permission denied (publickey).
当我查看错误时,我在这里看到一件有趣的事情,那就是 .ssh/id_rsa 没有被尝试,只是 .ssh/identity 和 .ssh/id_dsa 被尝试了。
我该如何解决这个错误?谢谢