I have a repository that looks like this:
/a/trunk/Library
/a/branches/FeatureX/Library
/b/trunk/Application
/b/branches/FeatureX/Application
I want to rearrange this so that I have the Application and Library folders next to each other:
/a/trunk/Library
/a/trunk/Application
/a/branches/FeatureX/Library
/a/branches/FeatureX/Application
I tried to achieve this by simply "svn copy"-ing the "Application" folders. The problem I'm facing is that when I try to merge "FeatureX" into "trunk" later on, I get a tree conflict because "Application" was added in both trunk and the branch.
Is there a better way to do this?
(BTW i cannot merge "FeatureX" before copying "Application", this is just a test to see if it will be possible later on...)