full
[www.git] / git.html
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2 <html>
3 <head>
4 <title>Anonymous Git access</title>
5
6 { include('elements/header.html'); }
7
8 <div id="content">
9
10 <h6>Anonymous Git access</h6>
11
12 <p>Anonymous Git access to development versions of the Freeside source code is available.
13
14 <p>There are three active branches at this time: the default master,
15 FREESIDE_4_BRANCH and FREESIDE_3_BRANCH.  You can specify a branch such as
16 the FREESIDE_4_BRANCH with the <code>-b FREESIDE_4_BRANCH</code> option to
17 <code>git clone</code>.
18
19 <p>To check out the current tree, you would do:
20 <pre>
21 $ git clone git://git.freeside.biz/freeside.git freeside
22 </pre>
23 <p>or for the 4.x branch:
24 <pre>
25 $ git clone -b FREESIDE_4_BRANCH git://git.freeside.biz/freeside.git freeside4
26 </pre>
27
28 <p>There is also a <a href="https://github.com/freeside/Freeside">github mirror</a>.
29
30 </div>
31
32 { include('elements/footer.html'); }