I have a server that hosts my Subversion code base. That server is currently a Server 2003 box, and my IT admin wants to update it to 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 they 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 anyone have opinions on this, or does the method above seem like the best approach.
Thanks.