Deleting a project from the CVS repository is nothing more than deleting its directory structure from within the repository. Here is a short list of the steps:
- First, ensure that all users have commited and released their project work area (sandbox) before you attempt to delete the project.
- Now, delete the directory structure for your project from the CVS repository. In this example, I will be deleting the project named "ProjectX" from the repository:
% cd /var/lib/cvsroot
% ls -l
total 4
drwxrwsr-x 3 cvs cvsdev 1024 Jan 23 19:30 CVSROOT/
drwxrwsr-x 2 oracle cvsdev 512 Jan 24 19:38 ProjectX/
% rm -rf ProjectX - It is possible for a project to have entries in the scripting files within the CVSROOT directory. The most critical scripting file to c
No comments:
Post a Comment