views:

82

answers:

1

We are using Redmine for issue and bug tracking. We added SVN integration but, by doing this, it just shows SVN revisions in activity.

It would be great to see all SVN changes caused by a bug or issue. But it does not seem to be possible.

Is there a way to do that? If not Redmine, which is the best alternative tracking system to achieve this?

+2  A: 

We add the issue number in svn commit message and it's recognized automatically.

svn ci -m "incorrect encoding fixed (refs #2345)"

Later you'll be able to see it in the issue #2345. It doesn't show up right away, I guess redmine checks periodically for repository changes - but if you go to Repository tab and then to the issue, the change should be shown then.

More info about Redmine formatting

Dmitry Yudakov
Awesome reply, thanks! Excellent stuff that Redmine formatting reference, sorry for being such a Redmine-ignorant...
antur123