26

当我从终端运行“git remote -v”时,我得到以下信息:

heroku  git@heroku.com:obscure-taiga-9581.git (fetch)
heroku  git@heroku.com:obscure-taiga-9581.git (push)
origin  http://coastguard-quiz.herokuapp.com/ (fetch)
origin  http://coastguard-quiz.herokuapp.com/ (push)

我想替换“git@heroku.com:obscure-taiga-9581.git”部分。我怎么做?

4

3 回答 3

60

我假设你想要做的是推送到heroku 上的coastguard-quiz repo,这样当你git push heroku更新caostguard-quiz.herokuapp.com 时。

git remote rm heroku
git remote add heroku git@heroku.com:coastguard-quiz.git
于 2013-02-24T22:03:06.760 回答
3

我不确定它会如何影响 Heroku,但您可以更改 .git/config 中的路径

于 2013-02-24T18:00:12.653 回答
1
  1. 消除"git@heroku.com:obscure-taiga-9581.git"

git 远程 rm heroku

然后添加新的远程存储库

git remote add heroku git@github.com:your_nick/name_of_repo.git # this is good to copy paste from your github account 
于 2013-02-24T21:55:13.910 回答