Search code examples
svnrepositoryclone

Clone/Mirror SVN repos


I need to clone a SVN repo which is there on a remote site to my server. I have access to the SVN repo. But when I clone I want the entire history of the repo to be intact. What are the possible ways of doing this ?


Solution

  • dump of your existing repo
    svnadmin dump D:\Repositories\myexistsingproject > myexistsingproject.dump

    create a new repo
    svnadmin create D:\Repositories\mynewproject

    load the back up of the existing repo
    svnadmin load D:\Repositories\mynewproject < myexistsingproject.dump