Quantcast
Channel: Open Source Software Development » media-server
Viewing all articles
Browse latest Browse all 11

Convert SVN repo to git

$
0
0

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!


Viewing all articles
Browse latest Browse all 11

Trending Articles