Skip to content

Instantly share code, notes, and snippets.

@Perraudeau
Last active August 16, 2016 15:41
Show Gist options
  • Save Perraudeau/2ea5a02ed1118f4c8167b94d403d56ad to your computer and use it in GitHub Desktop.
Save Perraudeau/2ea5a02ed1118f4c8167b94d403d56ad to your computer and use it in GitHub Desktop.
svn dump to git on Windows
#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