Mercurial 和 bzr 的合并基础模拟(尽可能找到共同的祖先进行合并)?

发布于 2024-11-24 18:08:36 字数 94 浏览 1 评论 0原文

Git 有 merge-base 命令,可以显示两个或多个分支的共同祖先。

Mercurial 和 bzr 有何相似之处?

Git have merge-base command that show common ancestors of two or more branches.

What analog for Mercurial and bzr?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

月竹挽风 2024-12-01 18:08:36

使用 revsets

"ancestor(single, single)"
      Greatest common ancestor of the two changesets.

$ hg log -r 'ancestor(rev1, rev2)'

Use revsets:

"ancestor(single, single)"
      Greatest common ancestor of the two changesets.

$ hg log -r 'ancestor(rev1, rev2)'
梦归所梦 2024-12-01 18:08:36

对于 Bazaar:(

bzr find-merge-base /path/to/branch1 /path/to/branch2

此命令在可通过 bzr help 命令 获取的主要命令集中是隐藏的。使用 bzr help hide-commands 查看其他隐藏命令)。

For Bazaar:

bzr find-merge-base /path/to/branch1 /path/to/branch2

(This command is hidden from the main set of commands that you can obtain with bzr help commands. Use bzr help hidden-commands to see other hidden commands).

戴着白色围巾的女孩 2024-12-01 18:08:36

对于 Mercurial:

hg debugancestor rev1 rev2

For Mercurial:

hg debugancestor rev1 rev2

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