排除git push heroku master时发生No such app

要将Rails专案发布到Heroku

$ git push heroku master

却发生:

Warning: Permanently added the RSA host key for IP address '75.101.163.44' to the list of known hosts.

! No such app as wild-strom-440

fatal: The remote end hung up unexpectedly

而且app的名称和现有的名称app:deep-stream-880的名称不相符。
解法:

首先确认问题问题:

$ git remote -v

heroku git@heroku.com:wild-strom-440.git (fetch)
heroku git@heroku.com: wild-strom-440.git (push)

发现git的的名称果然不同,可能是在heroku create时重複执行的关係。

因此就先把现在的reomote git删除。

$ git remote rm heroku

再把目前的加上去

$ git remote add heroku git@heroku.com:deep-stream-880.git

然后重新再把master推去上:

$ git push heroku master

问题解决。


关于作者: 网站小编

码农网专注IT技术教程资源分享平台,学习资源下载网站,58码农网包含计算机技术、网站程序源码下载、编程技术论坛、互联网资源下载等产品服务,提供原创、优质、完整内容的专业码农交流分享平台。

热门文章