在从 heroku 网站重命名我的 heroku 应用程序之后,每当我在终端中 cd 到它的目录并运行 heroku 命令时,我就会得到 App not found。有人知道怎么补救吗?
App not found
尝试更新应用程序的 git 远程:
git remote rm heroku git remote add heroku git@heroku.com:yourappname.git
詹姆斯 · 沃德的答案也是正确的,或者试试这样做:
1)开启终端机
2)转到您的 _ app _ 目录/. git/config
3)一旦你打开配置文件,然后编辑如下:
改变
url = git@heroku.com:old_app_name.git
到
url = git@heroku.com:new_app_name.git
显然,你的应用程序的旧名字替换为新名字。希望它有所帮助 也可以点击这个链接: http://devcenter.heroku.com/article/renaming-apps”rel = “ norefrer”> renaming from cli-heroku
还有另一种方法,你可以通过网络将应用程序重命名为原来的名称来修复它。
使用 heroku 命令行查找旧名称:
> heroku rename newname
这样就能说出那个老名字了。使用旧名称通过网络重命名应用程序。您可以通过运行
> heroku info
完成后,您可以通过使用
> heroku rename preferredname
git remote rm heroku heroku git:remote -a newname
来自 Heroku 文件。
如果你从网站上重命名... [你的应用程序]将需要手动更新:
James Ward 的解决方案对我不起作用,我不得不以不同的格式输入我的 git url:
git remote rm heroku git remote add heroku https://git.heroku.com/appname.git