Integration of JIRA with TortoiseSVN

后端 未结 5 2128
面向向阳花
面向向阳花 2021-01-30 23:42

Could anyone specify the ways to integrate JIRA with TortoiseSVN to track the issue details? What URL should be specified in URL section, what are the other parameters needed? I

5条回答
  •  面向向阳花
    2021-01-31 00:32

    Following the advice of @Avi, here are the details for integration with JIRA:

    1. Set the following properties on the directory for which you want the integration to JIRA:

      • bugtraq:url: Example could be http://my.server.url/jira/browse/-%BUGID%. Please fill in the right information for my.server.url and . If you want to map for all projects in JIRA, the string could be .../browse/%BUGID%.
      • bugtrac:logregex: Regular expression for you JIRA Id. Depends on what you want to match, for all project use /w+\-(\d+)

      There are other alternatives for defining the properties, but these should do it.

    2. Commit your changes to the svn properties, so that the properties will be included for all people doing a checkout of the same directory.
    3. When doing now a commit on some of the files in the directory or subdirectories, include there the issue tag in the log message of Subversion.
    4. TortoiseSVN will now show a hyperlink in the log message, when you open the log of the files or directories.

    If you would like to integrate JIRA as well with Subversion, there is a documentation how to integrate Subversion into JIRA. You have to install then the Subversion JIRA plugin in JIRA.

提交回复
热议问题