Archive

Archive for July, 2008

Moving a SVN (subversion) Repository

July 8th, 2008
Comments Off

On your old server, create a dump file using the following command:
svnadmin dump /path/to/repository > reponame.dmp

On your new SVN Server create a new repository:
svnadmin create MyProjects

Copy the dump file onto the new server and run the following command
svnadmin load MyProjects< reponame.dmp

admin Linux Tutorials