Make sure you have enough rights to the existing repository:
First, dump the repository using svnadmin:
svnadmin dump /path/to/your-repository-name > your-repository-name.repo
Create your new repository (if you haven’t already):
svnadmin create your-new-repository-name
Then, load it into the new repository:
svnadmin load your-new-repository-name < your-repository-name.repo
Then, in your checked out code directory, change the repository location to point to the new location:
svn switch –relocate /path/to/old-repository /path/to/new-repository

Posted by Azmath Mohamad on December 16, 2011 at 8:56 AM
Thanks, that solved my svn migration issue