I've been following the Subversion -> Git migration guide here: https://stackoverflow.com/a/3972103/1107232
I'm migrating from Subversion 1.7.3 to git 1.7.9.2. I have one SVN repository with 9 projects in it, and after I run the command:
$ sudo git svn clone -stdlayout --no-metadata --authors-file=/var/git/svnauthors.txt file:///var/subversion /var/git/temp-repo
$ sudo git svn fetch
$ git branch -r
2.1.3
2.1.3@10
2.1.3@11
2.1.3@14
2.1.3@15
trunk
trunk@12
I get a 36M /var/git/temp-repo folder, but my /var/subversion folder is 606M.
Running 'git checkout -b 2.1.3 2.1.3' just prints 'Switched to a new branch '2.1.3'' Do I need to add some file:///var/subversion paths or something?