Mercurial - 如何在提交时指定分支?
我希望当用户提交变更集时,显示一条消息,提及提交变更集的分支。
示例:
$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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
添加到存储库的 .hg/hgrc:
Add to your repository's .hg/hgrc:
不幸的是,ssg 的答案不能移植到 Windows 等(因为反引号),但这应该有效:
或
ssg's answer is unfortunately not portable to e.g. Windows (because of the backticks), but this should work:
or