'CVS'에 해당되는 글 2건

  1. eclipse에서 cvs 연결끊기.. 2008/08/27
  2. CVS repository 백업/복구 하기 2008/04/22

eclipse에서 cvs 연결끊기..

from tools 2008/08/27 18:37
Disconnecting a project from CVS

Disconnect a project from CVS to disable the CVS operations that can be performed on the project and it resources and optionally to remove the CVS information (stored in the CVS folders) associated with the project.

To disconnect a project from CVS:

   1. In one of the navigation views, select the project to be disconnected.
   2. Select Team > Disconnect from the project's pop-up menu. The Confirm Disconnect from CVS dialog opens.
   3. In the dialog, choose one of:
         1. Delete the CVS meta information - disables the CVS team menu operations and removes the CVS folders and their contents from the file system.
         2. Do not delete the CVS meta information - disables the CVS team menu operations but leaves the CVS meta information.
   4. Click Yes to disconnect the project.

'tools' 카테고리의 다른 글

eclipse에서 ant로 javadoc task 에러  (0) 2009/06/11
무료 플래시 차트 'Open Flash Chart'..  (0) 2008/09/04
eclipse에서 cvs 연결끊기..  (0) 2008/08/27
FF VS IE 웹 개발 디버깅 툴  (0) 2008/08/13
Rex Swain's HTTP Viewer  (0) 2008/08/13
Tag // CVS, Eclipse

출처 : 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 명령에 대한 옵션입니다.