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
注: 一定要將沖突代碼處理了,再合入