I am having SVN folder structure as shown below:
and I would like to migrate all different svn trunk paths into single git master.
output:
Anyone knows how to do it? I am pretty much new to SVN to git migration. much appreciate for your help.
I have tried svn git clone -s but it is working for only single svn path migration. but I need to migrate multiple svn trunk paths into single git master.


My advice is to convert 3 times: convert every SVN repo to a separate git repo, then merge 3 git repositories into one using either
git subtreeorgit fetch+git merge.