How to duplicate subversion repository without access to file system?

I would like to know if there is an easy way to duplicate the subversion repository without accessing the file system. This means that I have read-only access using the HTTP interface.

Basically, I would like to have my own local copy of the repository for an open source project. They provide anonymous access to the subversion reposition, as usual.

I looked through the docs and I think my google-fu is good enough because I could not find a link to doing something like this.

So basically I want to download all versions and be able to import them into my own repo using svnadmin.

+5
source share
1 answer

, svnsync:

svnadmin create /localsvn
svnsync init file:///localsvn http://domain/svn
svnsync sync file:///localsvn

hook pre-revprop-change svnsync .

.

, svnsync URL-.

+8

All Articles