I am trying to use git as a frontend to a svn repository in order to be able to use git's nice features like simple branching, stashing etc.
The problem is that the SVN repository is quite large (8,000 revs) and contains lots of branches and tags (old as well as new).
It's a near standard layout, with a config containing fetch, branches and tags directives.
Since the oldest branch and tag refers to revision 10, it means that every "svn fetch" reads the entire repository history from revision 10 and forward, which can takes hours on the slow connection.
If I only track trunk, then it's fine, but I still want to make git aware of new branches and tags.
I usually look at git log -1 on the branch I'm at and gets the SVN revision from the comment, so I can do "git svn fetch -r7915:HEAD" or similar. I guess that's what "git svn fetch --parent" does. But why do I need to do this?
I'm on Windows, and use TortoiseGit which has quite nice support for git-svn, but since TortoiseGit only runs "git svn fetch" I'm kind of stuck.
Am I doing something wrong? I expect "svn fetch" to be a fast operation when the first "svn clone -s" is complete.