CVS Tutorial
From DojoWiki
Installing CVS on Windows XP
Installing CVS is easy. Just run the installer (See Movie)
[edit]
Creating a repository
There are several ways to get started.
- You can use the command line tools to initialize a repository
- With the CVSNT installation, a Control Panel Application is installed.
Here are a couple good pages on CVSNT Installation:
For a local install, things are pretty simple.
Create a CVS Root (ie. C:\CVSROOT) Define that by setting a Environment Variable pointing CVSROOT=c:\CVSROOOT
from the command line type $ cvs init
Go to your project directory and type cvs import -m "Adding files" module vendortag releasetag
Where Module is the project name ; vendortag is synonymous with a company name; and releasetag is an alpha tag like "Start"
More specifically type :
$cvs import -m "Importing files" myProject myName start
Then you can type
$cvs checkout
and begin updating and committing files.
