Last active
August 16, 2016 15:41
-
-
Save Perraudeau/2ea5a02ed1118f4c8167b94d403d56ad to your computer and use it in GitHub Desktop.
svn dump to git on Windows
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Prerequisites | |
#svnadmin (installable from tortoiseSVN with commande line option) | |
#git | |
#repository creation and extract svn dump to svn repos | |
svnadmin create /repos | |
svnadmin load /repos < dump.dmp | |
#clone the svn repos to a git repos | |
#there, d means the DD letter, it's really important to respect case and backslash, if not, nothing working. | |
git svn clone --authors-file=test -file///d/repos ./ | |
#WIP |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment