1

今、アプリケーションディレクトリにいるときにターミナルでgit remote -vと入力すると、次のようになります。

heroku  git@heroku.com:falling-samurai-3043.git (fetch)
heroku  git@heroku.com:falling-samurai-3043.git (push)

origin  git@github.com:obsideous/sample_app.git (fetch)
origin  git@github.com:obsideous/sample_app.git (push)

falling-smurai-3043heroku Webサイトのアカウントから破棄したため、存在しなくなりました。私はそれを次のように見せたいです:

heroku  git@heroku.com:(one that I create).git (fetch)
heroku  git@heroku.com:(one that I create).git (push)

origin  git@github.com:BigBoy1337/sample_app.git (fetch)
origin  git@github.com:BigBoy1337/sample_app.git (push)

obsideousは私の古いアカウントでBigBoy1337あり、すべてを切り替えようとしている新しいGitHubアカウントです。
これらの変更をどのように実行できますか。私はこのようなものに精通しているので、詳細であるほど良いです。ありがとう!

4

1 に答える 1

3

次のように入力して、リモート名を変更できます ( git remoteman ページ)。

git remote set-url heroku git@heroku.com:(one that I create).git
git remote set-url origin git@github.com:BigBoy1337/sample_app.git

これにより、gitファイル内のpushとアドレスの両方が更新されます。fetchconfig

于 2012-05-02T06:43:05.433 に答える