I'm moving to a new machine and i'm hoping to transfer my repositories as easily as possible. I have had a quick look around and have seen people using SVN dump.
As i'm planning on copying all repositories can I simply copy the c:/repositories folder ?
I'm using visual SVN on windows XP.
Take a look at Chapter 5 of Version Control with Subversion.
To move a repository from one server to another you will want to use the
svnadmin dump
andsvnadmin load
commands.The usage of svn dump is
svnadmin dump reponame > dumpfile
and the usage of svn load is
svnadmin load reponame < dumpfile
.The help page for VisualSVN that references the usage of
svnadmin dump
can be found here andsvnadmin load
here.