recursive
recursively add directory and files to cvs from Linux.
2010/04/12
Go to the directory which you want to add to cvs and execute the following: […] cvs login find . -type d -exec cvs add {} \; find . -type f -exec cvs add {} \; cvs commit […] That was …