Forum OpenACS Q&A: Response to Looking For A CVS Guru/Weenie

Collapse
Posted by Andrew Grumet on
How to remove them:
  1. cvs update the directory
    % cvs update -d data
    (creates subdirectories that CVS thinks should be there)

  2. remove and CVS remove any files in the directory
    % rm data/12/junk-file
    % cvs remove data/12/junk-file
    % cvs commit -m "Removing." data/12/junk-file
    

  3. when all files are removed, update the directory in "prune" mode
    % cvs update -P data/12
    (removes empty directories)

  4. Repeat as needed for all delinquent directories