从网站上更名为heroku应用程序,现在找不到了

发布于 2024-12-07 05:26:28 字数 102 浏览 0 评论 0原文

从heroku网站重命名我的heroku应用程序后,每当我在终端中cd到其目录并运行任何heroku命令时,我都会得到找不到应用程序。有人知道解决这个问题的方法吗?

After renaming my heroku app from the heroku website, whenever I cd to its directory in a terminal and run any heroku command, I get App not found. Does anybody know of a way to remedy this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

薔薇婲 2024-12-14 05:26:28

尝试更新应用程序的 git 远程:

git remote rm heroku
git remote add heroku [email protected]:yourappname.git

Try to update the git remote for the app:

git remote rm heroku
git remote add heroku [email protected]:yourappname.git
暗地喜欢 2024-12-14 05:26:28

James Ward 的答案也是正确的,或者尝试这样做:

1)。打开终端

2)。转到 your_app_directory/.git/config

3)。打开配置文件后,请进行如下编辑:

更改

url = [email protected]:old_app_name.git

url = [email protected]:new_app_name.git

显然将应用程序的旧名称替换为其新名称。希望有帮助
另请查看此链接从 cli - heroku 重命名

The Answer by James Ward is also correct, alternatively try doing this:

1). open a terminal

2). Go to your_app_directory/.git/config

3). Once you open the config file then edit as follows:

Change

url = [email protected]:old_app_name.git

to

url = [email protected]:new_app_name.git

Obviously substituting your apps old name to its new name. Hope it helps
Also checkout this link renaming from cli - heroku

泛泛之交 2024-12-14 05:26:28
git remote rm heroku
heroku git:remote -a newname
git remote rm heroku
heroku git:remote -a newname
弄潮 2024-12-14 05:26:28

来自 Heroku 文档...

如果您从网站重命名...[您的应用]将需要手动更新:

git remote rm heroku
heroku git:remote -a newname

From the Heroku docs...

If you rename from the website ... [your app] will need to be updated manually:

git remote rm heroku
heroku git:remote -a newname
七色彩虹 2024-12-14 05:26:28

还有另一种方法,您可以通过网络将应用程序重命名为原始名称来修复它。

要找出旧名称,请使用 heroku 命令行:

> heroku rename newname

它将吐出旧名称。使用旧名称通过网络重命名应用程序。您可以通过运行检查重命名是否成功

> heroku info

一旦完成,您可以使用以下命令重命名为首选名称

> heroku rename preferredname

There is another way, you can fix it by renaming the app to the original name via web.

To find out the old name use heroku command line:

> heroku rename newname

which will spit out the old name. Use the old name to rename the app via web. You can check if renaming success by running

> heroku info

Once done you can rename to the preferred name by using

> heroku rename preferredname
漆黑的白昼 2024-12-14 05:26:28

詹姆斯·沃德的解决方案对我不起作用。我必须以不同的格式输入 git url:

git remote rm heroku
git remote add heroku https://git.heroku.com/appname.git

James Ward's solution didn't work for me. I had to enter my git url in a different format:

git remote rm heroku
git remote add heroku https://git.heroku.com/appname.git
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文