Reputation: 2640
I installed VisualSVN Server on Windows Server 2008. Now I would like to create a repository backup plan. My intention is to create full hotcopy bakcup (using svnadmin hotcopy
and then incremental backups. How to do a incremental backup using svnadmin.exe
? Or should I take only svnadmin dump
backups?
Upvotes: 2
Views: 6701
Reputation: 97527
Use the following command for that:
svnadmin dump --incremental repository >result.inc
What size are you repositories? It's really worth the effort to create incremental backups instead full backups? BTW: an svnadmin dump --help had helped.
Upvotes: 4