显示一个分支的负责人?
是否可以要求 Mercurial 仅显示一个分支的头?例如,我经常想仔细检查 default
是否只有一个头,但目前我需要“手动”执行此操作(即检查 hg Heads
的输出对于 default
中的多个条目)。
Is it possible to ask Mercurial to show only the heads of one branch? For example, I often want to double-check that default
only has one head, but currently I need to do that "manually" (ie, checking the output of hg heads
for more than one entry which is in default
).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
hg Heads <分支名称>
适用于 Mercurial 1.5.3。hg heads <branch name>
works on Mercurial 1.5.3.要获取当前分支的头,您可以使用:
并获取当前分支的头数(在 Bash 中):
To get the heads of the current branch you can use:
And to get the number of heads of the current branch (in Bash):