diff options
author | ivan <ivan> | 2007-02-19 15:52:02 +0000 |
---|---|---|
committer | ivan <ivan> | 2007-02-19 15:52:02 +0000 |
commit | 48fde7b5810a670151398dd0d19f30a7c5745dff (patch) | |
tree | df6fbb070418c43da045021e55574334f3a2739f /cvs.html | |
parent | f294a74d9a91f2ee875a64d83cb3cffe5be7b33e (diff) |
commit a first pass at an actual complete-ish site!
Diffstat (limited to 'cvs.html')
-rw-r--r-- | cvs.html | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/cvs.html b/cvs.html new file mode 100644 index 0000000..6333e3c --- /dev/null +++ b/cvs.html @@ -0,0 +1,69 @@ +<!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>Jun 30 2005</b> Note: the CVS tree has moved from <b>pouncequick.420.am</b> to <b>cvs.420.am</b>. +To convert an existing checkout, change to the freeside directory +and use this command: </i> +<pre> + for a in `find . -name Root -depth -print`; do + perl -pi -e 's/pouncequick\.420\.am/cvs.420.am/;' $a + done +</pre> +</td></tr> +</table> + +<br> +<table bgcolor="#eeeeee"> +<tr><td> +<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> +<pre> + cd freeside + cvs update -r FREESIDE_1_5_BRANCH -d -P +</pre> +</td></tr> +</table> + +<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_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>. + +<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_5_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_5_BRANCH freeside +</pre> + +</div> + +{ include('elements/footer.html'); } |