How do I integrate Bugzilla issues with issue tracking in TortoiseHg?

How do I set the Bug Tracking Options "Regex Issue" and "Issue Link" to include a link to "Bug [number]" from TortoiseHg?

The link to the problem should be in the following format:

http://www.company.com/bugzilla/show_bug.cgi?id=[number]

      

+3


source to share


1 answer


Try the following:

Regex problems: Bug (\d+)



Link to the problem: http://www.company.com/bugzilla/show_bug.cgi?id={1}

This will make the text Bug 123

underlined in commit messages and clicking on it will jump tohttp://www.company.com/bugzilla/show_bug.cgi?id=123

+5


source







All Articles