WE have developers working on a branch of the code when they are satisfied they are merging their changes with the main code. The checkins they have done are in the branch. but the Repository path we have setup in JIRA is the main. When the code bases are merged the svn tab does not show the checkins which were done in the branch. is there a way for the plugin to get the commits from the branch after they are meged.
The simple answer is no. The plugin just sees the message when the commit was done after the merge. If you want to collect the commit messages you will need to build a separate tool and then put those messages into the commit message after the merge.
svn log -v --stop-on-copy http://repo/branch
Use this output to figure out the revision number representing your last merge from the branch to trunk. (XXXX)
svn log -rXXXX:HEAD http://repo/branch > messages.txt
This collects all your commit messages.
Perform the merge
svn commit -F messages.txt
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.