Gleidson Sá Barreto <[EMAIL PROTECTED]> writes:

> It is not possible to import alone the folders of a
> project without the archives?

You're not importing, you're adding directories.  CVS doesn't manage
directories or attributes in files, so you'd have to do that yourself.

I suppose that you have already created a '/directory/to/import' and
added the toplevel ('import') to CVS, moving all the structure you wish
to import there:

----------------------------------------------------------------------
#!/bin/bash
# (*untested*)
cd /directory/to/import
for directory in `find . -type d`
do
    cvs add ${directory}
done
----------------------------------------------------------------------


Be seeing you,
-- 
Godoy.     <[EMAIL PROTECTED]>



_______________________________________________
Info-cvs mailing list
[EMAIL PROTECTED]
http://lists.gnu.org/mailman/listinfo/info-cvs

Reply via email to