summaryrefslogtreecommitdiff
path: root/git.html
blob: 1c5f99d50ad06ce0b7b8a81a227111cfdf6c7825 (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
<!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_4_BRANCH and FREESIDE_3_BRANCH.  You can specify a branch such as
the FREESIDE_4_BRANCH with the <code>-b FREESIDE_4_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 4.x branch:
<pre>
$ git clone -b FREESIDE_4_BRANCH git://git.freeside.biz/freeside.git freeside4
</pre>

<p>There is also a <a href="https://github.com/freeside/Freeside">github mirror</a>.

</div>

{ include('elements/footer.html'); }