We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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?
svn2gitnet [url] --notrunk --notags --branches ./ --verbose
The text was updated successfully, but these errors were encountered:
Ideally, use --branches multiple times will generate your expected result:
--branches
svn2gitnet [url] --notrunk --notags --branches br1 --branches br2 --branches br3 --verbose.
svn2gitnet [url] --notrunk --notags --branches br1 --branches br2 --branches br3 --verbose
However, I need to resolve #64 first.
Sorry, something went wrong.
Ah OK :)
No branches or pull requests
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
?The text was updated successfully, but these errors were encountered: