如何通过 Fossil 中的提交修复票证

发布于 2024-11-02 16:41:34 字数 130 浏览 0 评论 0原文

所以,我认为在 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 技术交流群。

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

发布评论

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

评论(1

静待花开 2024-11-09 16:41:34

要关联提交和票证,您只需将票证 ID 放入提交消息中即可。

您可以用同样的方式将签到与机票关联起来。

在用户界面中,它们将显示为可点击的链接,并且当状态为已关闭时,它们会被删除线。


我不知道有什么方法可以仅通过输入特定消息来更改票证状态,但您可以说:

$fossil commit -m "Fixed [d4fdff0914]"
New_Version: 05cb7c01d1e9a0129fda0464bee0a7ada5244a6a
$fossil ticket set d4fdff0914 status Fixed
ticket set succeeded for UID d4fdff09148c5e5c4918a64a699d91103eeaaeef

它会产生相同的效果。

如果您有创意,设置一些东西来自动执行此操作可能不会太麻烦。

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:

$fossil commit -m "Fixed [d4fdff0914]"
New_Version: 05cb7c01d1e9a0129fda0464bee0a7ada5244a6a
$fossil ticket set d4fdff0914 status Fixed
ticket set succeeded for UID d4fdff09148c5e5c4918a64a699d91103eeaaeef

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.

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