00001 /** \page cvs CVS access
00002
00003 \section anonymous Anonymous CVS Access
00004
00005 This project's SourceForge.net CVS repository can be checked out through anonymous (pserver) CVS with the following instruction set.
00006 The module you wish to check out must be specified as the modulename. The modulename is 'ximol'.
00007 When prompted for a password for anonymous, simply press the Enter key.
00008
00009 <pre>
00010 cvs -d:pserver:anonymous@cvs.ximol.sourceforge.net:/cvsroot/ximol login
00011 cvs -z3 -d:pserver:anonymous@cvs.ximol.sourceforge.net:/cvsroot/ximol co ximol
00012 </pre>
00013
00014 Updates from within the module's directory do not need the -d parameter.
00015
00016 \section developper Developer CVS Access via SSH
00017
00018 Only project developers can access the CVS tree via this method. SSH1 must be installed on your client machine.
00019 Substitute modulename and developername with the proper values. Enter your site password when prompted.
00020
00021 <pre>
00022 export CVS_RSH=ssh
00023 cvs -z3 -d:ext:developername@cvs.ximol.sourceforge.net:/cvsroot/ximol co ximol
00024 </pre>
00025
00026 */