I'm trying to convert a Subversion repository to Git using reposurgeon, the repository holds several projects with the following layout:
<groupname>/<projectname>/{trunk,tags,branches}
I tried this reposurgeon script:
read <svnrepository.dump
sourcetype svn
prefer git
rebuild myrepository
But the result was a Git repository with a branch per group.
Is there a way to restrict the conversion to a single project?