diff options
author | Ivan Kohler <ivan@freeside.biz> | 2012-02-19 18:03:28 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2012-02-19 18:03:28 -0800 |
commit | 5bac83a77b7d399d76abd7bd08f676333505895c (patch) | |
tree | 38235c4087fe8efae39dc7824121b778e63b5fd9 /git.html | |
parent | 77aa8bd86cbb22ecf624d0e78ba5a0f8af078fca (diff) |
cvs->git
Diffstat (limited to 'git.html')
-rw-r--r-- | git.html | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/git.html b/git.html new file mode 100644 index 0000000..2e3bba9 --- /dev/null +++ b/git.html @@ -0,0 +1,30 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html> +<head> +<title>Anonymous Git access</title> + +{ include('elements/header.html'); } + +<div id="content"> + +<h6>Anonymous Git access</h6> + +<p>Anonymous Git access to development versions of the Freeside source code is available. + +<p>There are three active branches at this time: the default master, +FREESIDE_2_3_BRANCH and FREESIDE_2_1_BRANCH. You can specify a branch such as +the FREESIDE_2_3_BRANCH with the <code>-b FREESIDE_2_3_BRANCH</code> option to +<code>git clone</code>. + +<p>To check out the current tree, you would do: +<pre> +$ git clone git://git.freeside.biz/freeside.git freeside +</pre> +<p>or for the 2.3 branch: +<pre> +$ git clone -b FREESIDE_2_3_BRANCH git://git.freeside.biz/freeside.git freeside2.3 +</pre> + +</div> + +{ include('elements/footer.html'); } |