2

尝试将我的第一个 Rails 应用程序部署到 Heroku。

所有应用程序代码都在这里: https ://github.com/donpinkus/first_app 。

运行heroku create给了我这个错误:

donaldmbp15:first_app donald$ git push heroku master
Warning: Permanently added the RSA host key for IP address '50.19.85.132' to the list of known hosts.
Connection closed by 50.19.85.132
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.
donaldmbp15:first_app donald$ 

听起来有点像,Heroku 或 Github 都没有访问权限。我已经从本地 git repo 推送到 Github,所以我排除了 Github 作为错误来源。剩下的就是 Heroku,或者我的本地机器。有任何想法吗?

4

1 回答 1

1

首先通过以下方式首先生成 RSA 密钥

bash: ssh-keygen -t rsa

将您的密钥添加到heroku

bash: heroku keys:add

阅读更多https://devcenter.heroku.com/articles/keys

于 2014-10-10T17:00:22.633 回答