1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
<?xml version="1.0"?>
<document>
<properties>
<author email="bob@eng.werken.com">bob mcwhirter</author>
<title>CVS</title>
</properties>
<body>
<section name="Anonymous CVS Access">
<p>
This project's CVS repository can be checked out through anonymous (pserver)
CVS with the following instruction set.
When prompted for a password for anonymous, simply press the Enter key.
</p>
<source>
cvs -d:pserver:anonymous@cvs.codehaus.org:/scm/cvspublic login
cvs -z3 -d:pserver:anonymous@cvs.codehaus.org:/scm/cvspublic co classworlds
</source>
<p>
Updates from within the module's directory do not need the -d parameter.
</p>
</section>
<section name="Developer CVS Access via SSH">
<p>
Only project developers can access the CVS tree via this method.
SSH1 must be installed on your client machine. Substitute <b>developername</b>
with the proper value. Enter your site password when prompted.
</p>
<source>
export CVS_RSH=ssh
cvs -z3 -ddevelopername@cvs.codehaus.org:/scm/cvs co classworlds
</source>
</section>
</body>
</document>
|