Migrating SVN repository to another server
Actually it’s a trivial task that has been already discussed and described in all glory details. Anyway, just for a record, I’ll duplicate that information here.
- Dump the content of your current SVN repository.
- Transfer it to a new server.
- Create a new repository and load the dump into.
svnadmin dump /var/svn > /tmp/svn_repository.dump
svnadmin create /var/svn svnadmin load /var/svn < /tmp/svn_repository.dump
Just that simple.