mazong1123 / svn2gitnet

A cross-platform svn to git migrator.
MIT License
46 stars 12 forks source link

Root is just branches? #63

Open nathandaly opened 6 years ago

nathandaly commented 6 years ago

Hey there,

Not an issue just a question.

I have a SVN repo I have to import to git. It is a non-standard layout, no trunk, no branches and no tags directories.

The root of the repo are just branch. Not sure what command to pass to opt out of git master and just have branches, is this possible?

svn2gitnet [url] --notrunk --notags --branches ./ --verbose?

mazong1123 commented 6 years ago

Ideally, use --branches multiple times will generate your expected result:

svn2gitnet [url] --notrunk --notags --branches br1 --branches br2 --branches br3 --verbose.

However, I need to resolve #64 first.

nathandaly commented 6 years ago

Ah OK :)