The structure of the SVN configuration is as follows.
https://hogehoge/svn/
trunk/
hoge/
release01/
release02/
tags/
hoge/
branches/
project1/src
project2/src
Now, I would like to migrate branch/project1/ and branches/project2/ with git-svn. I want it to be like this in local repo.
c:Sample/sampleForGit
branches/
project1/src
project2/src
I have edited config as follows, but it does not work.
[svn-remote "svn"]
url = https://hogehoge/svn/
fetch = branches/project1:refs/remotes/git-svn/branches/project1
fetch = branches/project2:refs/remotes/git-svn/branches/project2
branches = branches/project1/*:refs/remotes/git-svn/branches/project1/*
branches = branches/project2/*:refs/remotes/git-svn/branches/project2/*
The branches of project1 and project2 are not separated.
c:Sample/sampleForGit
branches/
src
How can I import separate branches?