I want to use git to clone a svn repository, but unfortunately, where svn checkout gets the repo with all externals, git svn clone only gets the reposi
svn checkout
git svn clone
I post solution here that works in my case
git svn show-externals | \ awk '/^\// { print "git svn clone "$3" ."$1" "$2":HEAD" }' | \ bash