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.

  1. Dump the content of your current SVN repository.
  2. svnadmin dump /var/svn > /tmp/svn_repository.dump
  3. Transfer it to a new server.
  4. Create a new repository and load the dump into.
  5. svnadmin create /var/svn
    svnadmin load /var/svn < /tmp/svn_repository.dump

Just that simple.

Posted on February 17, 2011 at 1:15 pm by sergeyt · Permalink
In: Linux

Leave a Reply