Vineet,
Sergei Organov wrote:
"Aggarwal, Vineet" <[EMAIL PROTECTED]> writes:
To create new project in a repository we first checkout the root of the
repository (cvs co -l . ) then create a subdirectory for the new
project, add files to it and commit. We don't use cvs import worrying
that the vendor branch functionality will create branches and do
undesired things.
Don't worry, use cvs import and ignore vendor branches. I mean
just forget the import creates them, -- they will do no harm.
Sergei is correct. However, remember that directories are not versioned
by CVS; only files are versioned. So, the best way to create a new
top-level directory in your repository is to import from an empty directory:
mkdir empty_dir
cd empty_dir
cvs -d <repos> import new_dir_name A B
This will create a new top-level directory in your repository named
'new_dir_name'. The vendor and release tags here (A and B) are
irrelevant, since they don't get applied to the directory.
After you've created the directory you can check it out in your working
directory and then start adding files.
--
----------------
Mark E. Hamilton
Orion International Technologies, Inc.
Sandia National Laboratory, NM.
505-844-7666
_______________________________________________
info-cvs mailing list
[email protected]
http://lists.nongnu.org/mailman/listinfo/info-cvs