Recursively adding files to CVS
The following commands can become handy if you are still stuck with cvs and cannot use the excellent eclipse cvs client.
find . -type d -print | grep -v CVS | xargs cvs add
find . -type f -print | grep -v CVS | xargs cvs add