|
RestoringFromTheBackup
How to recover your repository from the backup.
The backup format is a compressed svn dump file. To recover it, you can use the bzip2 utility to uncompress it, and svnadmin load (http://svnbook.red-bean.com/en/1.0/re36.html) to restore the changes. |
Sign in to add a comment
For the impatient; here is my command:
# un-gzip all dumps (in filestamp time order - tr = Time,Reverse) to std out, svnadmin reads std in gunzip -c ls -tr dump* | svnadmin load /new/svn/repo
This time with no stripping!
worked better for me.