git merge --no-ff After resolving conflicts, will the history of the branch be gone?
漂亮男人
漂亮男人 2017-05-02 09:48:08
0
1
694

When Gitlab sends a merge request, there are conflicts that need to be resolved manually, and then I follow the steps as prompted

git fetch origin
git checkout -b develop origin/develop

git checkout master-clone
git merge --no-ff develop

git push origin master-clone

In this case, there will be no commit history of the develop branch in the master-clone branch?

漂亮男人
漂亮男人

reply all(1)
曾经蜡笔没有小新

对。

      A---B---C develop
     /
    D------------ master

git merge --no-ff develop

      A---B---C develop
     /         \
    D-----------E---F master

git merge develop

      A---B---C develop
     /         
    D-A---B--C--E---F master
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template