I'm trying to reduce my ruleset for svn2git. My tree looks like this..
A/foo
B/foo
C/foo
D/foo
I want to put A, B, and C under a legacy folder and that works. I want D to be it's own top level folder.
My current rule is..
match /(A|B|C)/([^/]+)/
repository myrepo
branch legacy/\1/\2
end match
Is it possible to modify the rule such that D does not end up legacy without having to define another rule?
End result should be:
legacy/A/foo
legacy/B/foo
legacy/C/foo
D/foo