我想将分支更改为现有的远程分支,但错误的是我git branch some-remote-branch
创建了一个新的本地分支。
如何解决此问题?
答案 0 :(得分:1)
删除新的本地分支,然后签出到正确的远程分支。
git branch --delete some-remote-branch
git fetch (if your repo doesn't have the remote branch already)
git checkout -t origin/correct-branch
答案 1 :(得分:1)
没有什么可以解决的。只是
git checkout correct-branch
这将创建一个名为correct-branch
的本地分支,与origin/correct-branch
相同,您将切换到该分支。
无需删除您在本地创建的分支some-other-branch
。