当推进我的rails应用程序时,Heroku repo已经消失了

时间:2013-06-11 08:46:48

标签: ruby-on-rails-3 heroku

我一直在使用heroku作为我的rails应用程序。我回来在应用程序上做了一些工作,但是当我做的时候

git push heroku master

我得到了

fatal: 'heroku' does not appear to be a git repository
fatal: Could not read from remote repository.

但是

git remote -v

给出

origin  git@github.com:x/guidelines.git (fetch)
origin  git@github.com:x/guidelines.git (push)

所以我认为这意味着回购在某处?我出错的任何想法?

1 个答案:

答案 0 :(得分:1)

是的,不要担心一切都很好。

您需要访问heroku.com并从Apps&gt;获取应用程序的git网址。应用名称&gt;设置页面。您正在寻找git@heroku.com:<application-name>.git

返回命令行读取heroku remote via;

git remote add heroku git@heroku.com:<application-name>.git

然后您就可以推送到heroku遥控器了。