2.1 branched
[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>Oct 11 2009</b> Active branches are now MAIN, FREESIDE_2_1_BRANCH and FREESIDE_1_9_BRANCH.  To move to FREESIDE_2_1_BRANCH: </i>
15 <pre>
16   cd freeside
17   cvs update -r FREESIDE_2_1_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 three active branches at this time: the default MAIN,
28 FREESIDE_2_1_BRANCH and FREESIDE_1_9_BRANCH.  You can specify a branch such as
29 the FREESIDE_2_1_BRANCH with the <code>-r FREESIDE_2_1_BRANCH</code> option to
30 <code>cvs checkout</code>.
31
32 <p>Your CVSROOT should be set to:
33 <pre>
34 :pserver:anonymous@cvs.freeside.biz:/home/cvs/cvsroot
35 </pre>
36 <p>The password for the user `anonymous' is `anonymous'.  The current tree is
37 available as module `freeside'. 
38
39 <p>So, to check out the current tree, you would do (sh/bash/ksh/zsh/etc.):
40 <pre>
41 $ export CVSROOT=":pserver:anonymous@cvs.freeside.biz:/home/cvs/cvsroot"
42 $ cvs login
43 (Logging in to anonymous@cvs.freeside.biz)
44 CVS password:
45 $ cvs checkout freeside
46 </pre>
47 or (csh/tcsh/etc.):
48 <pre>
49 % setenv CVSROOT ":pserver:anonymous@cvs.freeside.biz:/home/cvs/cvsroot"
50 $ cvs login
51 (Logging in to anonymous@cvs.freeside.biz)
52 CVS password:
53 $ cvs checkout freeside
54 </pre>
55
56 </div>
57
58 { include('elements/footer.html'); }