I have a server that hosts my Subversion code base. That server is currently a Windows Server 2003 box, and my IT administrator wants to update it to Windows Server 2008.
This means that I'm going to need to move my Subversion repository while the server gets built up and was wondering what the best practices are for moving the repository to a new server.
It seems like, looking online, the recommended way is to use:
svnadmin dump /path/to/repository > repository-name.dmp
And then use:
svnadmin create repository-name
svnadmin load repository-name< repository-name.dmp
To import the repository.
Does the method above seem like the best approach?