我在Heroku中有一个神秘的应用程序。它叫做怪异-app-5536
当我尝试将代码推送到Heroku时,我收到此消息:
Your account my_email@geemail.com does not have access to weird-app-5536.
!
! SSH Key Fingerprint: *************************************************
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
当我尝试...
heroku apps
我得到了我的应用列表,但它不包含神秘应用,很奇怪-app-5536。
我无法销毁或重命名奇怪的应用程序5536应用程序。它总是说我没有访问权限。 该应用程序未出现在Heroku网站上的应用程序列表中。
当我输入
git remote -v
我明白了:
heroku git@heroku.com:weird-app-5536.git (fetch)
heroku git@heroku.com:weird-app-5536.git (push)
origin git@github.com:thisisme/my_code.git (fetch)
origin git@github.com:thisisme/my_code.git (push)
我删除了旧的ssh密钥。我创建了一个新的并将其添加到Heroku
我可以创建新的应用,它们会显示在我的应用列表中。
据我所知,我只有一个Heroku帐户。
难住了。我不知道从哪里开始。
答案 0 :(得分:4)
发生的事情是你正在工作的git repo与旧的遥控器绑在一起。无需联系heroku或其他任何东西......只需删除heroku git remote并读取即可。
通过运行删除:
git remote rm heroku
读取:
heroku git:remote -a appname
答案 1 :(得分:0)
老实说,我会尝试获得Heroku的支持。您可能被某人列为另一个应用程序的贡献者,但没有给予写入权限? Heroku的支持可能是你最好的选择。