Git 解决冲突
检出,在本地审查和合并
第 1 步. 获取并检出此合并请求的分支
git fetch origin
git checkout -b hotfix/0401_linhorn origin/hotfix/0401_linhorn
第 2 步. 本地审查变更
第 3 步. 合并分支并修复出现的任何冲突
git checkout dev133
git merge --no-ff hotfix/0401_linhorn
第 4 步. 推送合并的结果到 GitLab
git push origin dev133
本作品采用《CC 协议》,转载必须注明作者和本文链接
推荐文章: