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-3043不再存在,因为我从 heroku 网站上的帐户中销毁了它。我希望它看起来像:

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 remote您可以通过键入(手册页)来更改远程名称:

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 回答