我正处于合并过程中,而我想git checkout --theirs my_file
时只是做git checkout --ours my_file
。
有没有办法扭转它?
答案 0 :(得分:2)
TL; DR :仅git checkout --ours my_file
@matt在评论中建议,您可以使用git checkout <version> -- my_file
签出所需的特定版本。
最简单的方法实际上是键入第二个命令git checkout --ours my_file
,因为--ours
和--theirs
是对基础分支和合并分支的引用。因此,基本上就像@matt的解决方案一样,具有更简单的参考。