I have created a branch folder in the wrong place and want to delete it. I cannot seem to do this in Jira even logged in as admin.
A bit late answer, but it maybe may help others...
This plug-in (which is a fork of the Atlassian's JIRA Subversion plug-in) allows to remove (and create, update, etc) artifacts on Subversion repositories from within JIRA:
https://marketplace.atlassian.com/plugins/pbeltranl.subversion.jira.pbeltranl-jira-subversion-plugin
Hi Marc,
JIRA doesn't have such a function. To remove an SVN folder you need to do this straight through SVN command:
svn rm file:///path/to/your/SVN_REPO/foo/trunk -m "Removing trunk directory from foo"
You can also do this from a checked-out directory:
svn co http://myrepo/foo (or) svn co file:///path/to/my/repo/foo svn rm trunk svn commit -m "Removing the trunk dir from foo"
Best regards,
Lucas Timm
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Jira doesn't ever update SVN. You can link it to SVN so that changesets can be linked to Jira issues but any kind of structural change in SVN would have to be done in SVN. Jira will just read changes & store them in a cache for display.
http://svnbook.red-bean.com/en/1.7/svn.branchmerge.maint.html
http://svnbook.red-bean.com/en/1.7/svn.tour.cycle.html#svn.tour.cycle.revert
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.