我在git repo中意外创建了多个heroku应用程序:
(workout) n155-p250:workout sahandzarrinkoub$ heroku create agile-garden-20427
Creating ⬢ agile-garden-20427... done
(workout) n155-p250:workout sahandzarrinkoub$ heroku create
Creating app... done, ⬢ immense-harbor-64484
(workout) n155-p250:workout sahandzarrinkoub$ heroku create workoutcalendar
Creating ⬢ workoutcalendar... done
我只想要一个名为workoutcalendar的heroku应用程序。所以我上线删除了我的heroku帐户中的所有其他应用程序。我进入应用程序设置并单击删除应用程序,除了exercisecalendar之外的每个应用程序。然而,当我尝试push
时,它仍会记得我删除的旧应用。
(workout) n155-p250:workout sahandzarrinkoub$ git push heroku master
remote: ! No such app as agile-garden-20427.
fatal: repository 'https://git.heroku.com/agile-garden-20427.git/' not found
我的猜测是git push heroku master
命令以某种方式映射到我创建的第一个heroku应用程序,并且我必须在我自己的机器上,在本地仓库中更改它。如果有人能解释如何对我这样做,或者,如果我误解了这个问题,我会非常感激,提供一个合适的解决方案。
答案 0 :(得分:1)
您可以查看git remote -v
输出:如果它仍然引用了错误的网址,您可以使用以下网址进行更改:
git remote set-url origin https://git.heroku.com/workoutcalendar.git
然后再试一次。