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?
对。
git merge --no-ff develop
git merge develop