Personal tools
You are here: Home Docs Migrating a Subversion repository to a new machine

Migrating a Subversion repository to a new machine

On the old server do:

svnadmin dump /home/svn > projectname.dump

then scp the file to the new machine

On the new server do:

svnadmin create /home/svn
svnadmin load /home/svn < projectname.dump
Document Actions