1

我在 Heroku 上的生产应用程序运行良好,但我在尝试添加临时应用程序时遇到了麻烦:

$ heroku list
=== My Apps
testivate
testivate-staging

$ git remote -v
heroku  git@heroku.com:testivate.git (fetch)
heroku  git@heroku.com:testivate.git (push)

$ heroku git:remote -a testivate-staging
 !    Git remote heroku already exists

发生了什么事,我该如何解决?

谢谢,

史蒂文。

4

1 回答 1

6

heroku git:remote默认情况下添加一个名为“heroku”的遥控器。错误消息告诉你,“一个名为 heroku 的 git 远程已经存在”。通过附加 为您的遥控器指定一个名称-r your_name

于 2012-11-26T02:46:51.363 回答