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) $
答案 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)
我正在关注接下来的步骤:
git remote rm heroku #删除远程网址
git remote add heroku https://git.heroku.com/myapp.git
答案 3 :(得分:0)
您应该接受@ codeWizard的答案,因为它看起来像是您的快速修复 官方文档是一个完美的演练,可以避免麻烦:
答案 4 :(得分:0)
此命令解决我的问题
git remote rm heroku
git remote add heroku https://git.heroku.com/app-name.git
答案 5 :(得分:-1)
event_operator