Git安装教程分支管理之分支管理策略

Posted 小素素

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git安装教程分支管理之分支管理策略相关的知识,希望对你有一定的参考价值。

通常,合并分支时,如果可能,Git会用Fast forward模式,但这种模式下,删除分支后,会丢掉分支信息。

如果要强制禁用Fast forward模式,Git就会在merge时生成一个新的commit,这样,从分支历史上就可以看出分支信息。

下面我们实战一下--no-ff方式的git merge

首先,仍然创建并切换dev分支:

$ git checkout -b dev
Switched to a new branch dev

修改readgit.txt文件,并提交一个新的commit:

$ git add readgit.txt
$ git commit -m "add two"
[dev 80d4b2e] add two
 1 file changed, 1 insertion(+)

现在,我们切换回master

$ git checkout master
Switched to branch master

准备合并dev分支,请注意--no-ff参数,表示禁用Fast forward

$ git merge --no-ff -m "merge with no-ff" dev
Merge made by the recursive strategy.
 readgit.txt | 1 +
 1 file changed, 1 insertion(+)

因为本次合并要创建一个新的commit,所以加上-m参数,把commit描述写进去。

合并后,我们用git log看看分支历史:

$ git log --graph --pretty=oneline --abbrev-commit
*   ca2581f (HEAD -> master) merge with no-ff
|| * 80d4b2e (dev) add two
|/
*   43fd2d3 conflict fixed

Git分支十分强大,在团队开发中应该充分应用。

合并分支时,加上--no-ff参数就可以用普通模式合并,合并后的历史有分支,能看出来曾经做过合并,而fast forward合并就看不出来曾经做过合并。

以上是关于Git安装教程分支管理之分支管理策略的主要内容,如果未能解决你的问题,请参考以下文章

[Git]3_分支管理

git

Git分支管理策略

Git管理篇GitLab 版本分支管理策略

20180618_Git分支管理策略, 不使用Fast forward模式.

GitGit 分支管理 ( 克隆远程分支 | 克隆 master 分支 git clone | 查看远程分支 git branch -a | 克隆远程分支 git checkout -b )(代码片段