-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathrepo.empy
More file actions
39 lines (32 loc) · 1.21 KB
/
repo.empy
File metadata and controls
39 lines (32 loc) · 1.21 KB
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
@# -*- html -*-
@{page_id = "repo"}
@{page_title = "Source repository"}
@empy.include("header.empy")
<p>The ccache source repository is available via
<a href="http://git-scm.com/">Git</a>:</p>
<pre>
git clone https://github.com/ccache/ccache.git
</pre>
<p>You can also <a href="https://github.com/ccache/ccache">browse the source
code</a>.</p>
<p>The official repository contains these branches:</p>
<ul>
<li>
<b>master</b>: This branch contains changes that will end up in the next
feature release (version X.Y). Most development takes place here. master is
generally safe to use for testing, but functionality may be broken at times
and file formats may change in backward incompatible ways during
development.
</li>
<li>
<b>X.Y-maint</b>: This branch contains changes that will end up in the next
bugfix release of the X.Y series (version X.Y.Z).
</li>
<li>
<b>dev/<i>X</i></b>: These are feature branches (where <i>X</i> is the
feature name), which are used for larger features that may be unstable,
experimental or whose target release hasn't been decided yet. These
branches can be rebased or deleted without any special notice.
</li>
</ul>
@empy.include("footer.empy")