It is basically just 1 command to clone the svn repos to your local working directory. The operation will maintain the logs.
git svn clone -s http://my.svnserver.com/svn/myapp/ MyAppGit
The -s command will clone just the trunk. If you don’t use the stand trunk, tag, branch, you can -s and it will clone the whole repos.
You can verify all logs are there with git log.
Next, maintain the same ignore configurations.
git svn create-ignore
Lastly, add the new remote to your git repos (eg Github).
git remote add origin https://github.com/relizont/myapp.git
git push -u origin master
git svn clone -s https://192.168.1.3/svn/Carlsoo-JamboTours jambotours
That’s all!