显示一个分支的负责人?

发布于 2024-09-06 14:41:29 字数 152 浏览 4 评论 0原文

是否可以要求 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 技术交流群。

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

发布评论

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

评论(2

他是夢罘是命 2024-09-13 14:41:30

hg Heads <分支名称> 适用于 Mercurial 1.5.3。

hg heads <branch name> works on Mercurial 1.5.3.

云朵有点甜 2024-09-13 14:41:30

要获取当前分支的头,您可以使用:

hg heads .

并获取当前分支的头数(在 Bash 中):

hg heads -q . | wc -l

To get the heads of the current branch you can use:

hg heads .

And to get the number of heads of the current branch (in Bash):

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