This is what I am trying to accomplish
Project_A
-SubFolder_Y
Project_X
Project_B
Project_X
So basically migrating the subdirectory 'Project_X' from Project A to the root of Project B with all the revisions.
I am trying to use svnadmin commands since I have access to the SVN server.
I know I wanted to so something along the line of:
1. svnadmin dump \\Repositories\Project_A > ProjectA.dump
2. svndumpfilter include Project_X --drop-empty-revs --renumber-revs < Project_A.dump > Project_X.dump
3. svnadmin load --ignore-uuid \\Repositories\Project_B <Project_X.dump
This doesn't seem to work, what am I missing here?
Thanks in advance!!!