1

我在 Heroku 上有一个应用程序,它的应用程序名称是我喜欢的,但有一个我不打算使用的代码库。我为我不想要的项目重命名了应用程序。然后,我将正在开发的新应用程序推送到 Cedar,并使用我停止工作的原始应用程序名称明确声明了我想要的项目名称。现在,当我转到该应用程序名称时,即使我将新应用程序推到那里,我也只能看到旧应用程序。我该怎么做才能让我正在开发的新应用程序使用我喜欢的应用程序名称?

我假设我必须手动删除 Heroku 上的所有内容,然后再次执行“git push heroku master”,一切都会好起来的,但由于我对这一切还是新手,我想知道正确的程序是什么.

谢谢你。

Here is what I mean:
http://AppNameILike.heroku.com
#rename it to:
http://AppNameIlike-OLD.heroku.com
#create new heroku app with new project (notice recycling the name I like):
http://AppNameILike.heroku.com
#This new app still shows my old app
4

1 回答 1

2

您是否使用过 heroku 重命名命令?

http://devcenter.heroku.com/articles/renaming-apps

$ heroku rename newname
http://newname.heroku.com/ | git@heroku.com:newname.git
Git remote heroku updated

当您更改了 heroku 应用程序的子域时,您更改了 git push url(即 heroku git remote)。因此,您还需要使用 heroku rename 命令来获得与 heroku 的正确 git“连接”。

于 2011-12-04T20:36:42.567 回答