I am migrating a SVN repository to Git.
The svn structure is like shown below
Root
+ branches
+ b1
+ b2
+ development_branches
+ d1
+ d2
+ tags
+ trunk
The situation here is the folder branches contains another subdirectory development_branches which in turn contains few branches.
When I use svn2git, to convert this in to a git repository. The folder development_branches is considered a single branch. Below is the Git branch structure using svn2git
Root
+ b1
+ b2
+ development_branches
is it possible to make svn2git to consider the contents of the folder "development_branches" as individual branches instead, or is there a way in Git which will enable to mark the folders inside the folder development_branches as individual branches?
Thanks in advance