0

我是 git 的新手,在尝试将本地存储库推送到 github 时遇到了重大问题。我使用我的 github repo SSH 地址设置了一个名为 origin 的远程 repo。然后,当我尝试推动时,我不断遇到以下问题:

Macintosh:thinkful projects adityagorti6$ git remote -v
origin  git@github.com:speedrage56/Thinkful-Repo.git (fetch)
origin  git@github.com:speedrage56/Thinkful-Repo.git (push)
Macintosh:thinkful projects adityagorti6$ git push -u origin master
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)? yes
Warning: Permanently added 'github.com,207.97.227.239' (RSA) to the list of known hosts.
Permission denied (publickey).
fatal: The remote end hung up unexpectedly

任何帮助,将不胜感激。

4

2 回答 2

1

您上传到 GitHub 的公钥不适用于您计算机上的私钥。您应该按照说明上传您的公钥。

或者,您可以使用HTTP 协议,但它不适合此任务。

于 2013-02-28T04:21:04.303 回答
0

您是否按照指南在 github 上设置了一个新的 git 存储库?我的意思是您必须在 github 上添加您的公钥,以便稍后使用它登录,这里是显示该过程的链接:

Github 指南

希望你让它工作:)

于 2013-02-28T04:22:34.960 回答