需要git-guru的帮助)))
现状如下:
git pull bitbucket [branch_name]
问题:
目前我想从github删除我的原始存储库,我有两个问题:
是否会破坏我的VPS中的任何内容。我的意思是github是我的 原始回购,所以它不会是任何燃烧问题吗?
如何将我的bitbucket repo设为默认设置,以便我不这样做 必须输入:
git pull bitbucket [branch_name]
但只需输入:
git pull [branch_name]
答案 0 :(得分:1)
您想要将git remote -v
更改为指向您的bitbucket网址,然后移除您的bitbucket遥控器。您必须在VPS和本地执行此操作。它不应该破坏你的VPS中的任何东西。
如果您执行origin git@github.com:USERNAME/REPOSITORY.git (fetch)
origin git@github.com:USERNAME/REPOSITORY.git (push)
bitbucket git@bitbucket.org:USERNAME/REPOSITORY.git(fetch)
bitbucket git@bitbucket.org:USERNAME/REPOSITORY.git (push)
,您会看到指向github的来源
git remote set-url origin git@bitbucket.org:USERNAME/REPOSITORY.git
要更改它,只需使用:
git remote -v
再次运行origin git@bitbucket.org:USERNAME/REPOSITORY.git(fetch)
origin git@bitbucket.org:USERNAME/REPOSITORY.git (push)
bitbucket git@bitbucket.org:USERNAME/REPOSITORY.git(fetch)
bitbucket git@bitbucket.org:USERNAME/REPOSITORY.git (push)
验证更改
git remote rm bitbucket
删除你的bitbucket遥控器
git remote -v
然后再次运行origin
,您应该只看到origin git@bitbucket.org:USERNAME/REPOSITORY.git(fetch)
origin git@bitbucket.org:USERNAME/REPOSITORY.git (push)
{{1}}