Mercurial - 如何在提交时指定分支?

发布于 2024-12-29 00:07:23 字数 178 浏览 1 评论 0原文

我希望当用户提交变更集时,显示一条消息,提及提交变更集的分支。

示例:

$hg commit -m 'Fix bug'
Changeset committed on branch bugfix

我实际上需要修改 hg 提交代码还是这是一种更快/更简单的方法?

I would like, when a user commit a changeset, to show a message mentioning the branch where the changeset was committed.

Example:

$hg commit -m 'Fix bug'
Changeset committed on branch bugfix

Do I actually need to modify the hg commit code or is it a quicker/simpler way of doing it?

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

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

发布评论

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

评论(2

戏剧牡丹亭 2025-01-05 00:07:23

添加到存储库的 .hg/hgrc:

[hooks]
commit=echo "Changeset committed on branch `hg branch`"

Add to your repository's .hg/hgrc:

[hooks]
commit=echo "Changeset committed on branch `hg branch`"
起风了 2025-01-05 00:07:23

不幸的是,ssg 的答案不能移植到 Windows 等(因为反引号),但这应该有效:

# UNIX-like
[hooks]
commit=hg log -r $HG_NODE --template "Committing on branch {branch}\n"

# Windows
[hooks]
commit=hg log -r %HG_NODE% --template "Committing on branch {branch}\n"

ssg's answer is unfortunately not portable to e.g. Windows (because of the backticks), but this should work:

# UNIX-like
[hooks]
commit=hg log -r $HG_NODE --template "Committing on branch {branch}\n"

or

# Windows
[hooks]
commit=hg log -r %HG_NODE% --template "Committing on branch {branch}\n"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文