I have successfully imported all the tickets from Trac to Jira. We have subversion changesets tracking to all the tickets in Trac.
What can I do to make the existing changesets work as a link to point to subversion changes after importing data to Jira.
Thanks,
Pradeep
Here's a solution if you want your commit messages to be linked to your JIRA issues (and if you want your JIRA issues to be linked to your commits in bitbucket)
Before pushing your local git repository (coming from your SVN) to bitbucket, run this command:
git filter-branch -f --msg-filter "sed 's/#/XXX-/'" --tag-name-filter cat -- --all
Where XXX is the key of your project.
This will replace all references to a Trac ticket (i.e. See #522) to it's equivalent JIRA issue (XXX-522), provided that you imported the Trac issues into Jira.
All the commits will be linked both ways, just like magic.
I wrote a PHP script to rewrite the link tags in the trac.db before we imported. Here's a link to the script with user story and references for anyone else who runs into this one:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.