tags:

views:

50

answers:

2

I've got some code hosted at a svn server; I'm pretty sure they do a good job of making backups, but I'd like to make my own - just in case. I only have "svn access" to this machine; how can I make backups?

I could make something simple which just checks out every day and backups that, but I'd like something which captures each revision as well.

A: 

Did you try cloning your repo into another repo? Eg. git repo?

http://www.kernel.org/pub/software/scm/git/docs/git-svn.html

WooYek
+1  A: 

You should read about svnsync.

ChrisH