我更喜欢使用其他命令而不是
git checkout
,因为git checkout
有歧义;我更喜欢使用 git reset
(对于分支使用 git switch
)。
但是,我注意到,在不使用
git checkout --theirs <file>
的情况下,我不知道如何在 rebase 期间执行 git checkout --ours <file>
和 checkout
。
是否有替代的 git 命令相当于
git checkout --theirs
/ git checkout --ours
?
啊我混淆了
reset
和restore
。
git restore --theirs
/git restore --ours
正常工作。