最佳答案
git命令中文件名前的双破折号是什么意思?
git checkout --ours -- path/to/file.txt
git checkout --theirs -- path/to/file.txt
它们是强制性的吗?它是否等同于
git checkout --ours path/to/file.txt
git checkout --theirs path/to/file.txt