sourceBranch合入targetBranch冲突的解决办法
git checkout targetBranch
git merge --no-ff origin/sourceBranch
git add .
git commit -m "合并分支"
git push origin targetBranch
注: 一定要将冲突代码处理了,再合入
git checkout targetBranch
git merge --no-ff origin/sourceBranch
git add .
git commit -m "合并分支"
git push origin targetBranch
注: 一定要将冲突代码处理了,再合入