2008/01/07 19:01
[Dev]
Procedure:
- Make a backup directory.
mkdir C:\cvsbackup
- To backup the CVS repository on Windows you can schedule a task.
Put the following into a batch file and run it from the schedule:
net stop CVSNT
xcopy C:\CVSRepository C:\cvsbackup /Q /S /C /H /R /O /Y
net start CVSNT
- To restore the CVS Repository backup:
net stop CVSNT
xcopy C:\cvsbackup C:\CVSRepository /Q /S /C /H /R /O /Y
net start CVSNT
Trackback Address :: http://www.anfamily.net/mcsong/trackback/315




