推送应用程序到heroku问题
我试图推我的应用程序到heroku,我得到以下消息:
$ heroku create Creating electric-meadow-15..... done Created http://electric-meadow-15.heroku.com/ | git@heroku.com:electric-meadow-1 5.git $ git push heroku master ! No such app as fierce-fog-63 fatal: The remote end hung up unexpectedly
这是我现在得到这个奇怪,我已经把应用程序推到heroku多次没有问题。 特别怪异的是, fierce-fog-63
是我很久以前制作和删除的一个旧应用程序。 为什么现在heroku试图推动这个不存在的应用程序,特别是当我创build一个新的应用程序? 有什么build议么?
input这个,我想你会看到这个问题:
git remote -v
修复它像这样:
git remote rm heroku git remote add heroku git@heroku.com:electric-meadow-15.git
我得到了第二个错误,你张贴“未能推动一些裁判'git@heroku.com:floating-stone-94.git'”(与一个不同的应用程序名称),我摆脱它做了以下几点:
git remote rm heroku heroku create
你应该看到一行说'Git remote heroku added'。 也
git remote -v
现在应该有正确的应用程序。
对于所有这些不起作用的人,请检查您的〜/ .heroku /凭证
如果电子邮件或令牌与该帐户不匹配,则不会看到您的应用程序。
如果你到了这里,并认为你有类似的问题,但所有其他的东西build议不起作用,你可能想尝试:
heroku restart