add files to CVS recursively
Submitted by niko on Thu, 03/20/2008 - 14:49
find . -type d -print | grep -v CVS | xargs cvs add
find . -type f -print | grep -v CVS | xargs cvs add
»
- niko's blog
- Login or register to post comments


Add only new files to SVN
$ svn status | grep ^? | awk '{print $2}' | xargs svn add