Rev 4226 | Blame | Compare with Previous | Last modification | View Log | RSS feed
@echo offREM Maintained in package SubversionServerSupportREMREM Create a backup of all the Repos while the server is in useREMset BREPO=d:\Backup_Repositoriesset REPO=d:\RepositoriesREM rmdir /s/q %BREPO%if not exist %BREPO% goto backupecho Backup Repository "%BREPO%" already existsexit /B 1:backupmkdir %BREPO%echo Backup Hooks and Other configcopy %REPO%\* %BREPO%for /D %%R in ( %REPO%\* ) do call :copyOne %%Rgoto end:copyOneecho HotCopy %~nx1if %~n1==Import_test goto endREM rmdir /s/q %BREPO%\%~nx1svnadmin hotcopy %1 %BREPO%\%~nx1:end