本文介绍了Heroku推送应用程序问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我安装了Heroku并创建了一个帐户,但由于某种原因,每当我尝试将该应用推送到该网站时,我都会遇到此错误。
$ git push heroku master
!没有这样的应用程序first_app
fatal:远程终端意外挂起
我已经检查过看到那个heroku看到了git
$ git remote -v
heroku [email protected]:first_app.git( fetch)
heroku [email protected]:first_app.git(push)
怎么做我得到了heroku来识别我的git文件?
解决方案
看起来您已经重命名了您的应用程序。
如果您已将应用程序重命名,请按照以下说明操作:
$ b 关注:更新Git远程部分,如果您通过Heroku Web界面更新应用程序!
I installed Heroku and set up an account, but for some reason whenever I try to push the app to the site, I get this error.
$ git push heroku master
! No such app as first_app
fatal: The remote end hung up unexpectedly
I have checked to see that heroku sees the git
$ git remote -v
heroku [email protected]:first_app.git (fetch)
heroku [email protected]:first_app.git (push)
how do I get heroku to recognize my git file?
解决方案
It seems that you have renamed your application.
If you have renamed you application just follow the instructions here:
http://devcenter.heroku.com/articles/renaming-apps#updating-git-remotes
Follow: Updating Git remotes part if you updated your application through the Heroku Web Interface!
这篇关于Heroku推送应用程序问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!