commit a first pass at an actual complete-ish site!
[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>Jun 30 2005</b> Note: the CVS tree has moved from <b>pouncequick.420.am</b> to <b>cvs.420.am</b>.
15 To convert an existing checkout, change to the freeside directory
16 and use this command: </i>
17 <pre>
18   for a in `find . -name Root -depth -print`; do
19     perl -pi -e 's/pouncequick\.420\.am/cvs.420.am/;' $a
20   done
21 </pre>
22 </td></tr>
23 </table>
24
25 <br>
26 <table bgcolor="#eeeeee">
27 <tr><td>
28 <i><b>Jan 24 2006</b> Active branches are now HEAD and FREESIDE_1_5_BRANCH.  Users accustomed to the relative stability of CVS HEAD in the last few years may wish to make sure they move from HEAD to FREESIDE_1_5_BRANCH: </i>
29 <pre>
30   cd freeside
31   cvs update -r FREESIDE_1_5_BRANCH -d -P
32 </pre>
33 </td></tr>
34 </table>
35
36 <p>Anonymous <a href="http://www.cvshome.org">CVS</a> access to development
37 versions of the Freeside source code is available.  You need CVS version 1.10
38 or higher.
39
40 <p>There are two active branches at this time: the default HEAD and
41 FREESIDE_1_5_BRANCH.  You can specify the FREESIDE_1_5_BRANCH with the <code>-r FREESIDE_1_5_BRANCH</code> option to <code>cvs checkout</code>.
42
43 <p>Your CVSROOT should be set to:
44 <pre>
45 :pserver:anonymous@cvs.420.am:/home/cvs/cvsroot
46 </pre>
47 <p>The password for the user `anonymous' is `anonymous'.  The current tree is
48 available as module `freeside'. 
49
50 <p>So, to check out the current tree, you would do (sh/bash/ksh/zsh/etc.):
51 <pre>
52 $ export CVSROOT=":pserver:anonymous@cvs.420.am:/home/cvs/cvsroot"
53 $ cvs login
54 (Logging in to anonymous@cvs.420.am)
55 CVS password:
56 $ cvs checkout -r FREESIDE_1_5_BRANCH freeside
57 </pre>
58 or (csh/tcsh/etc.):
59 <pre>
60 % setenv CVSROOT ":pserver:anonymous@cvs.420.am:/home/cvs/cvsroot"
61 $ cvs login
62 (Logging in to anonymous@cvs.420.am)
63 CVS password:
64 $ cvs checkout -r FREESIDE_1_5_BRANCH freeside
65 </pre>
66
67 </div>
68
69 { include('elements/footer.html'); }