如何通过 Fossil 中的提交修复票证
所以,我认为在 Redmine/Git 中,可以使用提交注释来修复问题:
git commit -m "Fixes #123"
在 Fossil 中是否可能出现类似的情况?如何?
So, I think in Redmine/Git it is possible to fix an issue using the commit comment:
git commit -m "Fixes #123"
Is something like this possible in Fossil? How?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要关联提交和票证,您只需将票证 ID 放入提交消息中即可。
您可以用同样的方式将签到与机票关联起来。
在用户界面中,它们将显示为可点击的链接,并且当状态为
已关闭
时,它们会被删除线。我不知道有什么方法可以仅通过输入特定消息来更改票证状态,但您可以说:
它会产生相同的效果。
如果您有创意,设置一些东西来自动执行此操作可能不会太麻烦。
To associate a commit and a ticket you can simply put the ID of the ticket in the commit message.
You can associate the check-in with the ticket in the same way.
In the UI they will appear as clickable links, and will have a strike through them when the status is
Closed
.I don't know of a way to do change the status of a ticket just by entering a specific message, but you could say:
and it would have the same effect.
If you're creative, it might not be too much trouble to set something up to do this automatically.