推动Heroku失败 - 没有这样的应用致命

时间:2015-12-20 08:17:53

标签: git heroku

Git push on heroku指向一个不存在的git存储库。

git.heroku.com/secure-reef-1722.git这是我们运行 heroku create 命令时创建的存储库。

但是,当我们进行“推动”时,命令( $ git push heroku master ),它说

  

遥控器:!没有像沸腾入口6957这样的应用程序。       致命的:存储库' https://git.heroku.com/boiling-inlet-6957.git/'找不到

当我们运行 $ git remote -v

时,我们也无法看到新的存储库
heroku  https://git.heroku.com/boiling-inlet-6957.git (fetch)
heroku  https://git.heroku.com/boiling-inlet-6957.git (push)
origin  git@bitbucket.org:coderz$/toy_app.git (fetch)
origin  git@bitbucket.org:coderz$/toy_app.git (push)

现在我们无法将文件推送到新的heroku git存储库(git.heroku.com/secure-reef-1722.git)

请帮助我们。提前谢谢。

完整的命令序列

coderz$:~/workspace/toy_app (master) $ heroku create
Creating secure-reef-1722... done, stack is cedar-14
https://secure-reef-1722.herokuapp.com/ | https://git.heroku.com/secure-reef-1722.git
coderz$:~/workspace/toy_app (master) $ git push heroku master
remote: !       No such app as boiling-inlet-6957.
fatal: repository 'https://git.heroku.com/boiling-inlet-6957.git/' not found
coderz$:~/workspace/toy_app (master) $ git remote -v
heroku  https://git.heroku.com/boiling-inlet-6957.git (fetch)
heroku  https://git.heroku.com/boiling-inlet-6957.git (push)
origin  git@bitbucket.org:coderz$/toy_app.git (fetch)
origin  git@bitbucket.org:coderz$/toy_app.git (push)
coderz$:~/workspace/toy_app (master) $ 

6 个答案:

答案 0 :(得分:18)

尝试重新添加远程网址。

// Check for the current url 
git remote -v

// remove remote url
git remote rm heroku

// re-add the remote url
git remote add heroku git@heroku.com:boiling-inlet-6957.git

答案 1 :(得分:1)

我通过运行解决了相同的问题: heroku登录

在运行之前: git remote add heroku https://git.heroku.com/app-name.git

答案 2 :(得分:1)

我正在关注接下来的步骤:

  1. git remote rm heroku #删除远程网址

  2. git remote add heroku https://git.heroku.com/myapp.git

添加新的URL heroku远程

  1. git remote -v

我验证了正确的url远程

  1. git push heroku master

推动更改

答案 3 :(得分:0)

您应该接受@ codeWizard的答案,因为它看起来像是您的快速修复 官方文档是一个完美的演练,可以避免麻烦:

https://devcenter.heroku.com/articles/git

答案 4 :(得分:0)

此命令解决我的问题

git remote rm heroku
git remote add heroku https://git.heroku.com/app-name.git

答案 5 :(得分:-1)

event_operator