-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathrepo.html
80 lines (80 loc) · 2.94 KB
/
repo.html
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Ccache — Source repository</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://ccache.dev/ccache.css" type="text/css">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<div id="banner">
<a href=".">
<span style="font-size: 500%; text-shadow: 5px 5px 5px #aaa">Ccache</span>
<span style="font-size: 150%">— a fast C/C++ compiler cache</span>
</a>
</div>
<div id="navigation">
<div class="group" style="margin-top: 0">About it:</div>
<ul>
<li><a href="/">Overview</a></li>
<li><a href="/platform-compiler-language-support.html">Supported platforms and compilers</a></li>
<li><a href="/performance.html">Performance</a></li>
<li><a href="/news.html">News</a></li>
<li><a href="/credits.html">Credits</a></li>
<li><a href="/license.html">License</a></li>
</ul>
<div class="group">Get it:</div>
<ul>
<li><a href="/download.html">Download</a></li>
</ul>
<div class="group">Use it:</div>
<ul>
<li><a href="/documentation.html">Documentation</a></li>
</ul>
<div class="group">Discuss it:</div>
<ul>
<li class="level1"><a href="https://github.com/ccache/ccache/discussions">Discussions</a></li>
<li class="level1"><a href="https://lists.samba.org/mailman/listinfo/ccache/">Mailing list</a></li>
<li class="level2"><a href="http://www.mail-archive.com/ccache@lists.samba.org">– Archive</a></li>
</ul>
<div class="group">Improve it:</div>
<ul>
<li><a href="/bugs.html">Bug report</a></li>
<li class="level2"><a href="https://github.com/ccache/ccache/issues">– View existing</a></li>
<li class="current"><a href="/repo.html">Source repository</a></li>
<li class="level2"><a href="https://github.com/ccache/ccache">– Browse</a></li>
</ul>
</div>
<div id="content">
<h1>Source repository</h1>
<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>
</div>
</body>
</html>