출처 : http://www.mobilefish.com/developer/cvsnt/cvsnt_quickguide_backup.html
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
위에서 보시면 아시겠지만, 백업 및 복구는 복사를 통해서 해결을 할 수 있습니다.
따라서, 옵션들은 XCOPY 명령에 대한 옵션입니다.
'tools' 카테고리의 다른 글
| eclipse 단축키 모음.. (0) | 2008/04/22 |
|---|---|
| eclipse 에서 확장자 인식 추가.. (0) | 2008/04/22 |
| eclipse 에서 php를 개발하기 위한 plug-in (0) | 2008/04/22 |
| eclipse 에서 subversion 사용할 수 있는 plug-in (0) | 2008/04/22 |
| CVS repository 백업/복구 하기 (0) | 2008/04/22 |







이올린에 북마크하기
이올린에 추천하기
















