How to access the CVS of any project¶
For each project a CVS repository is created. The creation of the new CVS are scripted every hour on the PMB forge server.
How to access your CVS¶
You must be a member contributor, a project manager or a global manager to have a CVS access. You must use SSH to reach the CVS server. Each member of PMB Forge has an account on the the server so that he can connect to the SSH server.
To use the CVS you must use the following parameters :
CVSROOT=/projets/project_identifier
CVS_RSH=ssh
Or by an online command (with the -d
option) :
cvs -d :extssh:user@forge.sigb.net:/projets/project_identifier
Anonymous access¶
With a simple anonymous access to the project CVS, you must use the following parameters :
CVSROOT=/projets/project_identifier
You must use the
pserver
protocol.
Or by an online command (with the -d
option) :
cvs -d :pserver:user@forge.sigb.net:/projets/project_identifier
Restricted anonymous access¶
With a restricted anonymous access, the access is on a CVS copy of the last night :
CVSROOT=/aprojets/project_identifierNote that the first directory in the path is not
/projets
but /aprojets
.
You must use the pserver
protocol.
Or by an online command (with the -d
option) :
cvs -d :pserver:utilisateur@forge.sigb.net:/aprojets/project_identifier