restore svn backup(.dump.gz)
by Ramya[ Edit ] 2013-12-24 18:53:14
restore svn backup(.dump.gz):
You can restore svn dumped repository using the following steps:
First, unzip the .gs file using gunzip,
gunzip /home/svnbackup/repository.dump.gz
this will extract the file as .gz file,
repository.gz in the given path..
Now you restore the dumped file using "load",
Create a repository as svn admin, for eg, resbackup and then,
svnadmin load /path/to/resbackup < /home/svnbackup/repository.svn
this will extract repository files and restores your dumped backup...