Say I have a lot of files that I want to add then check in at once. But consider that CVS folder should be excluded. What kind of command or script can be used in order to do this?
I have tried
find -name "*" -type f | xargs cvs add
to add files to repository, but it does not work. Any ideas?
Thanks!