6

前段时间我为我的 rails 应用程序创建了一个 heroku 存储库,但因为我从未使用过它而将其删除。现在我已经到了需要使用 heroku 的地步,但我遇到了以下错误:

! No such app as furious-mist-2295.这是旧的 repo 名称,所以它显然没有推送到我创建的新堆栈。

这是我正在考虑尝试的,但我担心会对我的 git repo 造成不必要的更改。

git remote rm origin

git remote add origin <URL to new heroku app>

git push -u origin master

4

1 回答 1

6

原来它可以用以下命令完成

git remote rm heroku

git remote add heroku git@heroku.com:new-application.git

这是一个非常简单的小修复。在事先不知道这些命令存在的情况下,似乎相当困难。

git remote -v派上用场仔细检查 git 和 heroku 中的哪些 repos 被推送和获取。

于 2012-07-05T03:01:57.913 回答