github - Git怎么移动master锚点?
漂亮男人
漂亮男人 2017-05-02 09:21:19
0
1
651

需求如题:

具体情况是:有几个子分支,怎么移动master分支。

下面有种麻烦的满发:删除原master,新建master。

shell$ git branch -D master
$ git checkout -b master
$ git branch -d temp

比如说有3个分支一个主分支:a,b,c三个分支 + master主分支
现在有个需求,原来master分支不要了,需要把 a 设置为master。

那应该怎么做?

漂亮男人
漂亮男人

reply all(1)
大家讲道理

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.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template