Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在完成“试用 Git”教程。
当我到达“1.11 远程推送”一章时,尝试运行:
$ git push -u orgin master
我收到此错误:
Permission denied (publickey). fatal: The remote end hung up unexpectedly
有任何想法吗?
您可能尚未向 SSH 密钥添加公共密钥。去做:
$ ssh-keygen -t rsa
将创建的公钥 ( id_rsa.pub) 复制到您帐户的SSH 密钥列表中,然后再次尝试推送。
id_rsa.pub
请参阅相关帮助页面:生成 SSH 密钥以获得更深入的响应。
您可以使用以下命令获取默认帐户的密钥。
更多信息:不同 github 帐户的多个 SSH 密钥设置