Beyond Compare 使用 Mercurial 进行左/右文件排序

发布于 2024-10-14 21:59:12 字数 313 浏览 1 评论 0原文

当使用 hg fetchhg 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

吻安 2024-10-21 21:59:12

是的,这是有原因的。来自hg help fetch

当发生合并时,新拉取的更改被认为是“权威的”。新更改的头部用作第一个父级,本地更改作为第二个父级。要切换合并顺序,请使用 --switch-parent。

这意味着获取类似于以下手动工作流程:

  1. 拉取
  2. 更新到新的拉头
  3. 合并

使用 --switch-parent 选项会跳过步骤 2,从而防止反向合并。

Yes, there's a reason. From hg help fetch:

When a merge occurs, the newly pulled changes are assumed to be "authoritative". The head of the new changes is used as the first parent, with local changes as the second. To switch the merge order, use --switch-parent.

This means a fetch is similar to the following manual workflow:

  1. pull
  2. update to new pulled head
  3. merge

Using the --switch-parent option skips step 2 and thus prevents a reversed merge.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文