Treating my repository as a SVN repo, I get:
svn co http://myrepo/foo/trunk foo
...
foo/
bar/
baz/ -> http://myrepo/baz/trunk
Treating it as a Git repo, I get:
git svn clone http://myrepo/foo --trunk=trunk --branches=branches --tags=tags
...
foo/
bar/
I can clone baz to my local machine elsewhere and add a symlink, but that's just a hack. Is there a way to have git svn rebase
automatically pull in those changes when it updates everything else, just like svn up
does?