Beyond Compare 使用 Mercurial 进行左/右文件排序
当使用 hg fetch
与 hg pull
+ hg merge
时,BeyondCompare 合并中的左/右文件会颠倒。这有什么原因吗?有没有办法保持相同的配置?
更新:
相关问题/答案:完全手动 Mercurial 合并
The left/right files in BeyondCompare merge are reversed when using hg fetch
vs an hg pull
+ hg merge
. Is there any reason for this? Is there a way to keep the same configuration?
Update:
Related question/answer: Completely manual Mercurial merge
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这是有原因的。来自
hg help fetch
:这意味着获取类似于以下手动工作流程:
使用
--switch-parent
选项会跳过步骤 2,从而防止反向合并。Yes, there's a reason. From
hg help fetch
:This means a fetch is similar to the following manual workflow:
Using the
--switch-parent
option skips step 2 and thus prevents a reversed merge.