I'm using svn2git (the good one) to transform some SVN repositories to Git repositories.
It has a commandline parameter --svn-branches
which is documented with
Use the contents of SVN when creating branches, Note: SVN tags are branches as well
What are the pros and cons of this commandline parameter.
Is it just that without it is faster because there is just a Git tag created and not the whole work tree dumped and with it is safer to have the correct state because the whole work tree is dumped or is there more to it?
Would you recommend using or omitting this parameter?