I try to clone a svn repo to git, but some of the branches are in the svn root dir like follows.
I've tried
$ git clone svn://url/svn-root -T trunk -b branches -b branch1 -b branch2
and
$ git clone svn://url/svn-root -T trunk -b branches -b .
Both are failed to clone the branch1 and branch2 correctly. Please help.
svn-root
├── branch1
├── branch2
├── branches
│ ├── branch3
│ └── branch4
└── trunk
