![]() |
|
How to make a CVS repositoryCreating a module: To create a cvs module, the import command must be used. $ cvs import -m "message here" modulename vendorname release No conflicts created by this import Create a new empty moduleTo avoid accidentally importing entire directories that were never intended for CVS, it can be easier to make an empty directory, and use import from within that directory. Example: $ mkdir tmp $ cd tmp/ $ cvs import -m "Creating testing module" testing ft testing-1_0_0 Importing an existing project
Make sure that your project directory is free of binary files. These can be moved in after the import. Next, issue the import command at the top level of your project directory. These can be added into a repository. Note! Importing a directory does not make it a working repositoryTo create a working repository, one in which all the basic cvs commands will work, the module must be checked out.
$Id: create.html,v 1.8 2005/01/13 15:34:42 willn Exp $ CVS - Concurrent Versioning System |