Mercurial 和 bzr 的合并基础模拟(尽可能找到共同的祖先进行合并)?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用 revsets:
Use revsets:
对于 Bazaar:(
此命令在可通过
bzr help 命令
获取的主要命令集中是隐藏的。使用bzr help hide-commands
查看其他隐藏命令)。For Bazaar:
(This command is hidden from the main set of commands that you can obtain with
bzr help commands
. Usebzr help hidden-commands
to see other hidden commands).对于 Mercurial:
hg debugancestor rev1 rev2
For Mercurial:
hg debugancestor rev1 rev2