Wednesday, September 10, 2008

LINUX---adding directory recursively to cvs

It is a tedious task to add a complete directory structure to CVS. Please use these simple commands to add files/directories recursively

find . -type d -print | grep -v CVS | xargs -n1 cvs add
find . -type f -print | grep -v CVS | xargs -n1 cvs add

No comments: