0

I am having SVN folder structure as shown below:

enter image description here

and I would like to migrate all different svn trunk paths into single git master.

output:

enter image description here

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.

1 Answers1

0

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 subtree or git fetch+git merge.

phd
  • 57,284
  • 10
  • 68
  • 103