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リポジトリにプッシュすることだと思います。そうすれば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 ヘロク

次に、新しいリモートリポジトリを追加します

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 に答える