blob: a2a31cfa2b66a2b7f353c8f98570667666702807 (
plain)
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
48
49
50
51
52
53
54
55
56
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Anonymous CVS access</title>
{ include('elements/header.html'); }
<div id="content">
<h6>Anonymous CVS access</h6>
<table bgcolor="#eeeeee">
<tr><td>
<i><b>Mar 4 2007</b> Active branches are now HEAD and FREESIDE_1_7_BRANCH. To move to FREESIDE_1_7_BRANCH: </i>
<pre>
cd freeside
cvs update -r FREESIDE_1_7_BRANCH -d -P
</pre>
</td></tr>
</table>
<br>
<p>Anonymous <a href="http://www.cvshome.org">CVS</a> access to development
versions of the Freeside source code is available. You need CVS version 1.10
or higher.
<p>There are two active branches at this time: the default HEAD and
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>.
<p>Your CVSROOT should be set to:
<pre>
:pserver:anonymous@cvs.420.am:/home/cvs/cvsroot
</pre>
<p>The password for the user `anonymous' is `anonymous'. The current tree is
available as module `freeside'.
<p>So, to check out the current tree, you would do (sh/bash/ksh/zsh/etc.):
<pre>
$ export CVSROOT=":pserver:anonymous@cvs.420.am:/home/cvs/cvsroot"
$ cvs login
(Logging in to anonymous@cvs.420.am)
CVS password:
$ cvs checkout -r FREESIDE_1_7_BRANCH freeside
</pre>
or (csh/tcsh/etc.):
<pre>
% setenv CVSROOT ":pserver:anonymous@cvs.420.am:/home/cvs/cvsroot"
$ cvs login
(Logging in to anonymous@cvs.420.am)
CVS password:
$ cvs checkout -r FREESIDE_1_7_BRANCH freeside
</pre>
</div>
{ include('elements/footer.html'); }
|