Set the
bugtraq: properties on a Subversion repository (recursively):
1. Check out your repository
2.
cd to the root directory of your checkout
3. Run the following commands (note the dot at the end of each line)
svn propset -R bugtraq:label "IssueID:" .
svn propset -R bugtraq:url "http://your.issuetracker.url/?%BUGID%" .
svn propset -R bugtraq:message "IssueID: %BUGID%" .
svn propset -R bugtraq:number "true" .
svn propset -R bugtraq:warnifnoissue "true" .
svn commit -q -m "Added IssueID properties to the repository"
WINDOWS: You have to run them from the command line because a batch file will replace %BUGID% with nothing (trying to use the variable
BUGID)
4. Verify when you are finished that the
bugtraq:message is
IssueID: %BUGID% and not just
IssueID:
For more info, check out this
guide which explains all the above.