I am trying to automatically backup my SVN Repository. This is in a batch file I wrote:
svnadmin hotcopy C:/myRepository G:/myRepositoryBackup --clean-logs
It works great the first time. However, each time after that, I get this error:
svnadmin: 'G:/myRepositoryBackup' exists and is non-empty
How do I have it overwrite my old data, or copy incrementally?
I know I can just use svnadmin dump
but I want the smaller hotcopy
output.