需求如题:
具体情况是:有几个子分支,怎么移动master分支。
下面有种麻烦的满发:删除原master,新建master。
shell
$ git branch -D master $ git checkout -b master $ git branch -d temp
比如说有3个分支一个主分支:a,b,c三个分支 + master主分支
现在有个需求,原来master分支不要了,需要把 a 设置为master。
那应该怎么做?
大家讲道理2017-05-02 09:23:19
Just reset the master branch to the a branch:
git checkout master
git reset --hard a
Note: The old master will disappear. -f may be needed when pushing.