意外删除 heroku 上的应用程序后无法推送到 heroku
Can't push to heroku after accidentally deleting app on heroku
1) 我在浏览 heroku 时不小心删除了我的 heroku 应用程序。
2) 我 运行 heroku 创建并得到了这个:
heroku create
Your version of git is 2.1.2. Which has serious security vulnerabilities.
More information here: https://blog.heroku.com/archives/2014/12/23/update_your_git_clients_on_windows_and_os_x
Creating polar-cove-4803... done, stack is cedar-14
https://polar-cove-4803.herokuapp.com/ | https://git.heroku.com/polar-cove-4803.git
3) 运行 heroku 创建后,我 运行 这个命令:
git push heroku master
remote: ! No such app as murmuring-dawn-5953.
fatal: repository 'https://git.heroku.com/murmuring-dawn-5953.git/' not found
4) 如何重置 heroku 遥控器并删除此遥控器,以便当我这样做时
git push heroku master
它推送到正确的遥控器?
将 heroku
远程更改为新项目的 git URL
git remote set-url heroku https://git.heroku.com/polar-cove-4803.git
这会将您的遥控器设置为您的新项目,您应该能够
git push heroku master
1) 我在浏览 heroku 时不小心删除了我的 heroku 应用程序。
2) 我 运行 heroku 创建并得到了这个:
heroku create
Your version of git is 2.1.2. Which has serious security vulnerabilities.
More information here: https://blog.heroku.com/archives/2014/12/23/update_your_git_clients_on_windows_and_os_x
Creating polar-cove-4803... done, stack is cedar-14
https://polar-cove-4803.herokuapp.com/ | https://git.heroku.com/polar-cove-4803.git
3) 运行 heroku 创建后,我 运行 这个命令:
git push heroku master
remote: ! No such app as murmuring-dawn-5953.
fatal: repository 'https://git.heroku.com/murmuring-dawn-5953.git/' not found
4) 如何重置 heroku 遥控器并删除此遥控器,以便当我这样做时
git push heroku master
它推送到正确的遥控器?
将 heroku
远程更改为新项目的 git URL
git remote set-url heroku https://git.heroku.com/polar-cove-4803.git
这会将您的遥控器设置为您的新项目,您应该能够
git push heroku master