I want to use git-svn to sync svn repository. The svn repository layout is
svn/prjA/trunk
svn/prjA/branches
svn/prjB/trunk
svn/prjB/branches
Use the following commands will separate into two git repository.
git svn clone https://host/svn/prjA/trunk prjA
git svn clone https://host/svn/prjB/trunk prjB
And the layout will be
prjA/.git
prjA/...
prjB/.git
prjB/...
If it possible to combine these into one git repository and sync to two sub-directories of svn? And the expected layout like following:
.git
prjA/...
prjB/...