0%

在merge和rebase时切换不同stage的conflict文件

当执行merge或rebase,发生冲突时,可以用git-checkout子命令来切换不同stage版本的冲突文件。

切换“源”版本:

1
2
3
git checkout --ours ./
# or
git checkout --ours <文件路径>

切换为“merge/rebase目标”版本:

1
2
3
git checkout --theirs ./
# or
git checkout --theirs <文件路径>
请我喝瓶肥仔快乐水?

欢迎关注我的其它发布渠道