How do I migrate an SVN repository with history to a new Git repository?

I read the Git manual, FAQ, Git – SVN crash course, etc. and they all explain this and that, but nowhere can you find a simple instruction like:

SVN repository in: svn://myserver/path/to/svn/repos

Git repository in: git://myserver/path/to/git/repos

git-do-the-magic-svn-import-with-history \
svn://myserver/path/to/svn/repos \
git://myserver/path/to/git/repos

I don’t expect it to be that simple, and I don’t expect it to be a single command. But I do expect it not to try to explain anything – just to say what steps to take given this example.

3
34

Leave a Comment