Group revisions together with Trac?

穿精又带淫゛_ 提交于 2019-12-25 00:13:59

问题


How does one "group a bunch of revisions you've already committed to svn together" (see Jim T's answer) in Trac?


回答1:


The very basic idea is simply to put a bug number into the revision log when you commit. If it's the first thing, then when you look down the logs you'll be able to see the bug numbers easily.

I know Redmine has an additional feature that checks for these bug numbers in the commit logs and attaches the revision to the bug, so you can see from the bug all the revisions that were involved in fixing it. I'd be suprised if trac doesn't have something similar.

TortoiseSVN has some support for ticketing systems that do this as well through the bugtraq properties. These integrate in different ways with the tracking software - from simple regex's that highlight the bug numbers and allow them to be displayed through to fully fledged modules that can be installed in tortoise to browse the open bugs whilst committing.




回答2:


The best you'll get in vailla Trac is put a link to the ticket in your commit comment ( "Fixed blah blah blah for #123" NOTE: The # is how trac will pickup the link.

The downside is that trac does not track the changesets in the ticket body/database. The commit comments will be properly link highlighted and easy to search, but the fine grained level is tracking you want isn't there by default.

I THINK you can achieve what you want by using a post/pre-commit hook script for svn. Trac ships with an example.



来源:https://stackoverflow.com/questions/927698/group-revisions-together-with-trac

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!