在合并冲突中,我试图解决所有合并冲突,而采用特定分支。
我正在尝试git checkout --ours
,但是出现以下错误:
fatal: '--ours/--theirs' cannot be used with switching branches
我如何才能实现自己的目标?
最佳答案
将git checkout
与--ours
或--theirs
一起使用时,至少需要一个参数:要 check out 的文件/目录的路径。
正如the manual所说:
所以:
git checkout --ours <path(s)>