Home

  CVS

CVS browsing and operations are supported.

Requirements
Command-line CVS has to be installed and working before CVS operations will work in Boa. CVS operations are implemented as a thin wrapper on top of command line cvs. You should therefor have a working knowledge of cvs before using this facility.
CVS over SSH is also supported, but only if keys are used and created with empty passphrases.

Command-line CVS requires the following:

On Windows NT environment variables can be set from My Computer->Properties-Environment
On Win9x environment variables can be set in AUTOEXEC.BAT.
e.g. Say your cvs.exe is in C:\CVSBIN and you have a directory called C:\HOME, you should add
PATH=%PATH%;C:\CVSBIN
HOME=C:\HOME
to the end of your AUTOEXEC.BAT file.

Checking out a local copy
The first thing you have to do before any CVS operation is to login.
When you log in, the CVSROOT and password is saved in .cvspass in the home directory ($HOME). No communication with the server takes place. CVS uses the .cvspass file for subsequent operations. Logging out simply removes the entry from .cvspass.
It is recommended that you do not logout, this way you do not have to reenter CVSROOT.

In any directory in the Explorer, right click and choose CVS->Login to log in to a CVS repository.
Fill in the repository's CVSROOT, e.g.:
:pserver:anonymous@cvs.boa-constructor.sourceforge.net:/cvsroot/boa-constructor
Next you will be prompted for a password. For anonymous CVS access to Boa the password is empty, just press enter.

To checkout, right click and choose CVS->Checkout. Next you will be prompted to choose a CVSROOT. These are all the CVSROOTs defined in your .cvspass file.
On the given command line, change [MODULE] to the module you want to check out. For Boa this is boa.
e.g. cvs -z7 -d :pserver:anonymous@cvs.boa-constructor.sourceforge.net:/cvsroot/boa-constructor checkout -P boa

Browsing a local copy
Enter the cyan CVS directory of an already checked out module in the Explorer to view the CVS status of the files.
These directories are created by CVS when a project is checked out of a CVS repository.

The selection determines which files are passed to CVS on the command line. When nothing is selected the the current directory '.' (the one selected in the tree) is used.
The following CVS commands are supported:

Right click on the selection and choose a CVS command from the popup menu or from the toolbar.

A confirmation dialog showing the help for your command and the command line that will be executed. Edit the command line if needed.
Results for stderr (Errors and Server messages) is shown in a message dialog, and results on stdout is shown is a multiline text control.

If you need to use SSH, SSH has to be setup to use the public and private keys generated with ssh-keygen and an empty passphrase. More Info


Boa Constructor - Application Help - CVS