是否有一个命令相当于 `git checkout --theirs` 和 `git checkout --ours` 以及 `git reset`?

问题描述 投票:0回答:1

我更喜欢使用其他命令而不是

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

git git-checkout
1个回答
0
投票

啊我混淆了

reset
restore

git restore --theirs
/
git restore --ours
正常工作。

© www.soinside.com 2019 - 2024. All rights reserved.