How do I access svn branches using git-svn with a non-standard svn repo layout?
问题 The standard repo layout in svn is as follows. /trunk /branches featureX featureY /tags 1.0 2.0 The repository I'm working with is a much flatter structure. trunk featureX featureY Essentially, trunk is at the same level as the other branches. I can't use the -s or -b option with git svn init because of this. How would I pull in trunk as the git branch master and pull in featureX as a git branch of the same name? I don't care about any other branches or tags. I've seen similar questions and