cvs co -d dir_name company/project
Category Archives: cvs
Recursively add files to cvs
Let say we have the following directory structure
- project
- one
- two
- add the root directory (project)
cvs add project
- cvs ci project
- cd project
- find all directories
find . -type d -print | grep -v CVS | xargs cvs add
- cvs ci
- find all files other than CVS and .
find . -type f -print | grep -v CVS | grep "^\.\/" |xargs cvs add - cvs ci