We are using a non standard layout for our projects in SVN.
http://svn_root/Path/ABC/development contains multiple folders. The folders are either an application folder or a library folder. SVN repo contains multiple actual projects as subdirectories
Im trying to clone a single folder under development folder to a dedicated repo in GIT.
SVN folder structure is
SVN_ROOT/
ABC/
development/
Project1/
files
Library1/
files
Project2/
files
So when i run the git svn clone im trying to achieve this folder structure
GIT_Repo/
.git
Project1/
files
It is important that the files remain in the Project1 folder
I tried the following commands and several such variants
git svn clone http://SVN_ROOT/ABC/development/Project1 GitRepo
git svn clone --trunk=/ABC/development/Project1 http://SVN_ROOT/ GITRepo
All the commands end up with the same folder structure
GITRepo/
files
The command is unable to retain the project folder and placing the project files directly in the GIT Repo.