SVN commit messages of a particular issue in JIRA

222 Views Asked by At

I have to fetch the SVN commit messages of a particular issue of JIRA.(https://jira2.####.com/browse/ABCD-1234)

issue key is= ABCD-1234

Can I get some help of API or any link or any method regarding how to fetch the commit messages?

Any Crucible/JIRA/SVN API will be helpful in this case.

1

There are 1 best solutions below

0
bahrep On

Run the svn log command with the --search and --search-and arguments. For example, run the following command when you need to view the commits that reference issue PROJECT-1234:

svn log --search PROJECT-1234 https://svn.example.com/MyRepo/MyProject