astricon pass
[www.git] / cvs.html
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2 <html>
3 <head>
4 <title>Anonymous CVS access</title>
5
6 { include('elements/header.html'); }
7
8 <div id="content">
9
10 <h6>Anonymous CVS access</h6>
11
12 <table bgcolor="#eeeeee">
13 <tr><td>
14 <i><b>Mar 4 2007</b> Active branches are now HEAD and FREESIDE_1_7_BRANCH. To move to FREESIDE_1_7_BRANCH: </i>
15 <pre>
16   cd freeside
17   cvs update -r FREESIDE_1_7_BRANCH -d -P
18 </pre>
19 </td></tr>
20 </table>
21 <br>
22
23 <p>Anonymous CVS access to development
24 versions of the Freeside source code is available.  You need CVS version 1.10
25 or higher.
26
27 <p>There are two active branches at this time: the default HEAD and
28 FREESIDE_1_7_BRANCH.  You can specify the FREESIDE_1_7_BRANCH with the <code>-r FREESIDE_1_7_BRANCH</code> option to <code>cvs checkout</code>.
29
30 <p>Your CVSROOT should be set to:
31 <pre>
32 :pserver:anonymous@cvs.420.am:/home/cvs/cvsroot
33 </pre>
34 <p>The password for the user `anonymous' is `anonymous'.  The current tree is
35 available as module `freeside'. 
36
37 <p>So, to check out the current tree, you would do (sh/bash/ksh/zsh/etc.):
38 <pre>
39 $ export CVSROOT=":pserver:anonymous@cvs.420.am:/home/cvs/cvsroot"
40 $ cvs login
41 (Logging in to anonymous@cvs.420.am)
42 CVS password:
43 $ cvs checkout -r FREESIDE_1_7_BRANCH freeside
44 </pre>
45 or (csh/tcsh/etc.):
46 <pre>
47 % setenv CVSROOT ":pserver:anonymous@cvs.420.am:/home/cvs/cvsroot"
48 $ cvs login
49 (Logging in to anonymous@cvs.420.am)
50 CVS password:
51 $ cvs checkout -r FREESIDE_1_7_BRANCH freeside
52 </pre>
53
54 </div>
55
56 { include('elements/footer.html'); }