Git合并:接受他们的多重冲突

我试图合并一个git分支(testing开发)回到主。 有很多合并冲突,但我希望尽可能多的通过他们的解决。 有没有办法让git与散户合并?

这将做到这一点,如果你是中期合并:

git merge test-development # Automatic merge failed, a bunch of conflicts! git checkout --theirs ./path git add ./path git commit 
Interesting Posts