How To Move An svn Repository
On the source system, run:
svnadmin dump /path/to/repository > repository-name.dmp
Copy the dump file to the new server. There, create a new repository to house the dumped information:
cd /path/to/new/repository
svnadmin create repository-name
svnadmin load repository-name < repository-name.dmp
Now, if you have a project that you checked out from the old location, that you want to point to the new location, [...]
