Gitlab发merge request的时候,有冲突需要手动解决,然后我按照提示的步骤
git fetch origin
git checkout -b develop origin/develop
git checkout master-clone
git merge --no-ff develop
git push origin master-clone
这样的话在master-clone这个分支就没有develop分支的提交历史了吗?
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
对。
git merge --no-ff develop
git merge develop