[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: newbie help: How to recursively add a subdirectory to a project a nd
From: |
laine+info-cvs |
Subject: |
Re: newbie help: How to recursively add a subdirectory to a project a nd commit it ? |
Date: |
07 Feb 2001 11:30:48 -0500 |
User-agent: |
Gnus/5.0808 (Gnus v5.8.8) Emacs/20.7 |
"Cabaniols, Sebastien" <address@hidden> writes:
> I would like to do something simple:
>
> I have a project under CVS called .... ProjIPP,
>
> I do cvs co ProjIPP and get my working copy,
>
> now, all I want to do is to add a subdirectory
> in the source tree of my working copy, to
> populate it with the source code of another
> project (mainly tar xvfz tools.tar.gz in ./tools)
cd tools
cvs import -m"Import tools into ProjIPP" ProjIPP/tools TOOLS TOOLS_1_00
^^^^^^^^^^^^^
This imports everything in the current directory into ProjIPP/tools in
CVS. The part marked with "^^^^" is probably what you got wrong.
> I have tried (probably with the bad options)
> cvs import but it looks like I have a new project
> created.