僅從合併的一側保留更改

在合併期間,你可以將 --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