要将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
问题解决。