'cvsnt backup'에 해당되는 글 1건

  1. CVS repository 백업/복구 하기 2008/04/22

출처 : http://www.mobilefish.com/developer/cvsnt/cvsnt_quickguide_backup.html

Procedure:

  1. Make a backup directory.

    mkdir C:\cvsbackup

  2. 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


  3. To restore the CVS Repository backup:

    net stop CVSNT
    xcopy C:\cvsbackup C:\CVSRepository /Q /S /C /H /R /O /Y
    net start CVSNT

위에서 보시면 아시겠지만, 백업 및 복구는 복사를 통해서 해결을 할 수 있습니다.
따라서, 옵션들은 XCOPY 명령에 대한 옵션입니다.