Heroku:!您无权访问应用程序heroku

时间:2013-07-19 09:43:18

标签: git heroku

我最初有一个名为heroku的默认名称设置的应用。但是我想改变它,所以我有两个应用程序,一个临时和生产应用程序。遵循heroku指南here我认为我已经开始工作了,正在运行git remote -v节目

heroku  git@heroku.com:oldapp.git (fetch)
heroku  git@heroku.com:oldapp.git (push)
staging git@heroku.com:newapp.git (fetch)
staging git@heroku.com:newapp.git (push)

但我现在想将heroku的名称更改为“production”。运行heroku apps:rename production --app heroku会导致:

Renaming heroku to production... failed
 !    You do not have access to the app heroku.

有什么想法吗?

2 个答案:

答案 0 :(得分:3)

要重命名git origin,请执行以下操作;

git remote rename heroku production

这将让你做到

git push production master

部署您的应用程序。

答案 1 :(得分:0)

确保您的heroku帐户中有“ production ”应用。 (您必须在帐户中使用新的应用名称。)

所以基本上你的命令应该是这样的:

heroku apps:rename newapp --app oldapp

无法重命名 heroku ,因为它不是您的应用。