Git has the power to automatically convert a svn (Subversion) repository to use git! (Refer to git-svn
for more information)
Run the command to create a new git repository from svn:
git svn clone <svn repository url>
A folder of the repository name will be created automatically. In order to add it to a Gitlab, push it…
git remote add origin <git repository url> git push -u origin master
The best feature about git svn clone
is that all history is preserved… sweet!