« Limiting memory usage | Django docs »
28 October 2008
I’ve recently moved my domain to a new host and I wanted to move my subversion repository at the same time. Apart from a problem with exceeding the memory allowance given to me by my hosts, it seems to have been a fairly straightforward move.
I dumped the data from the old host, then loaded it into the new repository. I’ve mounted the svn app at the same url as before, and so far my working copies seem to still be working. Instructions here
svnadmin dump --quiet ./svn > svn_data.dump
then copy the file to the new server
svnadmin load --quiet ./svn < svn_data.dump