仅从合并的一侧保留更改

在合并期间,你可以将 --ours--theirs 传递给 git checkout,以便从合并的一侧或另一侧获取文件的所有更改。

$ git checkout --ours   -- file1.txt # Use our version of file1, delete all their changes
$ git checkout --theirs -- file2.txt # Use their version of file2, delete all our changes