Reputation: 540
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 ?
Upvotes: 4
Views: 6645
Reputation: 2238
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
Upvotes: 4