-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathrepo.html
More file actions
119 lines (119 loc) · 2.92 KB
/
repo.html
File metadata and controls
119 lines (119 loc) · 2.92 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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Ccache — Source repository</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="ccache.css">
</head>
<body>
<header>
<div class="container">
<h1>
<a href="/">
<span style="font-size: 150%; ">Ccache</span> — a fast C/C++ compiler cache
</a>
</h1>
<button class="sidebar-toggle" aria-label="Toggle menu">☰</button>
</div>
</header>
<div class="layout">
<div class="overlay"></div>
<aside class="sidebar">
<nav>
<ul>
<li>
<a href="/">Overview</a>
</li>
<li>
<a href="/download.html">Download</a>
</li>
<li>
<a href="/documentation.html">Documentation</a>
<ul>
<li>
<a href="/platform-compiler-language-support.html">Supported platforms and compilers</a>
</li>
<li>
<a href="/storage-helpers.html">Storage helpers</a>
</li>
<li>
<a href="/performance.html">Performance</a>
</li>
</ul>
</li>
<li>
<a href="/contribution.html">Contribution</a>
<ul>
<li>
<a href="/bugs.html">Bug report</a>
</li>
<li>
<a class="current" href="/repo.html">Source repository</a>
</li>
<li>
<a href="https://github.com/ccache/ccache/discussions">Discussions</a>
</li>
<li>
<a href="https://lists.samba.org/mailman/listinfo/ccache/">Mailing list</a>
</li>
</ul>
</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>
</nav>
</aside>
<main class="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>
</main>
</div> <!-- layout -->
<script>
const sidebar = document.querySelector(".sidebar");
const overlay = document.querySelector(".overlay");
const toggle = document.querySelector(".sidebar-toggle");
toggle.addEventListener("click", () => {
sidebar.classList.toggle("show");
overlay.classList.toggle("show");
});
overlay.addEventListener("click", () => {
sidebar.classList.remove("show");
overlay.classList.remove("show");
});
</script>
</body>
</html>