Created
February 20, 2012 19:15
-
-
Save CVertex/1870825 to your computer and use it in GitHub Desktop.
Subversion backup and restore using svnadmin
This file contains 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
SVN repository backup and restore | |
Simplest way to backup & restore SVN repository: | |
SVN backup: | |
svnadmin dump "C:\SvnData\MyProject" > "C:\BackupMyProject.dump" | |
SVN restore (to new empty repository): | |
svnadmin load "C:\SvnData\MyProject2" < "C:\BackupMyProject.dump" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment