hg commit 是否应该通知 Fogbugz?
我已将 Mercurial 配置为与 Fogbugz 对话,如其文档中所述。 hg commit 是否应该根据 Bugz 标签通知 Fogbugz 使存储库出现在存储库列表中的提交以及相关错误中的提交消息?
I've configured Mercurial to talk to Fogbugz as explained in their documentation. Should hg commit inform Fogbugz of the commit making the repository appear in the list of repositories and the commit message in the related bug as per the Bugz tag?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从此处的说明来看,触发器不是
commit
,但是push
:该钩子是一个传入
钩子。 这个想法似乎是您有一个安装了此配置的中央存储库,当您将更改推送到中央存储库时,它会负责通知fogbugz。 您也许还可以将挂钩从incoming
更改为commit
,但最好将错误更新与推送到某些半- 官方地点。Judging by the instructions here, the trigger is not
commit
, butpush
: the hook is anincoming
hook. The idea would appear to be that you have a central repo with this configuration installed, and when you push your change to the central repo it takes care of informing fogbugz. You might also be able to change the hook fromincoming
tocommit
, but it's probably better to pair the bug update with a push to some semi-official location.