On Fri, Dec 14, 2001 at 03:03:34PM +0900, Alex Shinn wrote:
> Is there a way to recursively add directory hierarchies in cvs?
> 
> The manual says to use import in this case, but that doesn't do what I
> want since I'm trying to add within a branch.  Even if I specify the
> releasetag as an existing branch release, the files get imported into
> the main branch as well.

What about something like:

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

followed by

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

(assuming that all files are text)
??
> 
> -- 
> Alex

-- 
Karl E. Jørgensen
[EMAIL PROTECTED]
www.karl.jorgensen.com
==== Today's fortune:
Order and simplification are the first steps toward mastery of a subject
-- the actual enemy is the unknown.
                -- Thomas Mann

Attachment: msg15546/pgp00000.pgp
Description: PGP signature

Reply via email to