我错了git branch some-remote-branch

时间:2017-03-16 11:25:39

标签: git github

我想将分支更改为现有的远程分支,但错误的是我git branch some-remote-branch创建了一个新的本地分支。

如何解决此问题?

2 个答案:

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