suchen

Heim  >  Fragen und Antworten  >  Hauptteil

git merge --no-ff是什么意思

--no-ff是什么意思??
和 git merge --squash 有什么区别???

phpcn_u1582phpcn_u15822807 Tage vor1019

Antworte allen(3)Ich werde antworten

  • 巴扎黑

    巴扎黑2017-04-28 09:07:23

    --no-ff指的是强行关闭fast-forward方式。

    fast-forward方式就是当条件允许的时候,git直接把HEAD指针指向合并分支的头,完成合并。属于“快进方式”,不过这种情况如果删除分支,则会丢失分支信息。因为在这个过程中没有创建commit

    git merge --squash 是用来把一些不必要commit进行压缩,比如说,你的feature在开发的时候写的commit很乱,那么我们合并的时候不希望把这些历史commit带过来,于是使用--squash进行合并,此时文件已经同合并后一样了,但不移动HEAD,不提交。需要进行一次额外的commit来“总结”一下,然后完成最终的合并。

    总结:
    --no-ff:不使用fast-forward方式合并,保留分支的commit历史
    --squash:使用squash方式合并,把多次分支commit历史压缩为一次

    Antwort
    0
  • 过去多啦不再A梦

    过去多啦不再A梦2017-04-28 09:07:23

    Antwort
    0
  • ringa_lee

    ringa_lee2017-04-28 09:07:23

    http://git-scm.com/docs/git-merge

    Create a merge commit even when the merge resolves as a fast-forward. This is the default behaviour when merging an annotated (and possibly signed) tag.

    Antwort
    0
  • StornierenAntwort