Easy way to convert svn repository to git
To quickly convert svn repo to git (with history), all you need is: git svn clone my_svn_adddress But, you’ll probably also want to convert old svn usernames to git author names + e-mails. You can do that with -A switch: git svn clone my_svn_adddress -A users.txt users.txt example: my_old_username = My Name <my_email@example.com> my_old_username2 = [...]
Posted in System administration
Tags: git, svn