I'm using svn2git
but I could use git svn
as well. I had the scenario below in the SVN repository.
trunk
brances
branchesA
branchA1
branchA2
[...]
branchesB
branchB1
branchB2
[...]
branchesX
[...]
After the migration is done, on Git side there are branches branchesA
, branchesB
, etc... That have inside folders with the properly SVN branches. For example on Git repository:
master
branchesA
branchesB
branchesX
[...]
If you $git checkout branchesA
you will see all branches sub folders like ($ls
):
branchA1
branchA2
branchA3
[...]
Is there a way or tool or something that could fix this once I already migrated it, or somehow pass more then one folder to the --branches
?