我一直在使用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)
所以我认为这意味着回购在某处?我出错的任何想法?
答案 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
遥控器了。