2

我在将默认的 Rails 应用程序提交到 git 时遇到了一些麻烦,而且我在解决问题时遇到了困难。我目前正在运行 Ubuntu 11.10。我正在运行 git 版本 1.7.5.4。我浏览了一系列

git init
git add .
git commit -m "first commit"
git remote add origin git@github.com:username/first_app.git
git push -u origin master

我也在 github.com 上进行了 repo,但后来我收到了这个错误:

Permission denied (publickey).
fatal: The remote end hung up unexpectedly

想法?

4

1 回答 1

1

您需要将系统的公钥添加到 github.com 上的 git 管理界面。

https://help.github.com/articles/generating-ssh-keys

于 2012-11-18T05:30:06.870 回答