Skip to content

Commit c49c7e0

Browse files
committed
Rewrite About page
1 parent 1a4560a commit c49c7e0

File tree

4 files changed

+69
-32
lines changed

4 files changed

+69
-32
lines changed

content/about/_index.html

Lines changed: 63 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,68 @@
11
---
2-
redirect_to: about/branching-and-merging
32
url: /about.html
3+
section: "about"
44
aliases:
55
- /about/index.html
66
---
7+
8+
<div id="main">
9+
<h1> About Git </h1>
10+
11+
<h2> Git is fast </h2>
12+
13+
<p>
14+
Git was built to work on the Linux kernel, meaning that it was built to handle
15+
large repositories from day one.
16+
Speed and performance has always been a primary design goal of Git.
17+
</p>
18+
19+
<p>
20+
Git also stores repository history efficiently. As of 2025, the current version
21+
of the Linux kernel's source code is 1.7 GB.
22+
Git stores the full history of the Linux project (1.4 million commits) in only 5.5 GB.
23+
</p>
24+
25+
<h2> Git is widely used </h2>
26+
27+
<p>
28+
According to the <a href="https://survey.stackoverflow.co/2022/#version-control-version-control-system-prof">2022 Stack Overflow developer survey</a>,
29+
96% of professional developers use Git.
30+
</p>
31+
32+
<h2> Git has a huge ecosystem of tools </h2>
33+
34+
<p>
35+
The core Git project is just a command-line tool, but Git exploded in popularity
36+
in the early 2010s thanks to <a href="{{< relurl "tools/hosting">}}">Git hosting services</a>
37+
like GitLab, GitHub, and more.
38+
</p>
39+
40+
<p>
41+
Since Git was created, many
42+
<a href="{{< relurl "tools/guis" >}}">GUIs</a>, editor integrations,
43+
and
44+
<a href="{{< relurl "tools/command-line" >}}">command line tools</a>
45+
have been built to make working with Git more convenient.
46+
You favorite developer tools might already have a built-in Git integration.
47+
</p>
48+
49+
<h2 id="free-and-open-source">Free and Open Source</h2>
50+
51+
<p>
52+
Git is released under the <a href="https://opensource.org/licenses/GPL-2.0">
53+
GNU General Public License version 2.0</a>, which is an
54+
<a href="https://opensource.org/docs/osd">open source license</a>.
55+
The Git project chose to use GPLv2 to guarantee your freedom to
56+
share and change free software---to make sure the software is
57+
free for all its users.
58+
</p>
59+
60+
<p>
61+
However, we do restrict the use of the term "Git" and the
62+
<a href="{{< relurl "community/logos" >}}">logos</a> to avoid confusion. Please see our
63+
<a href="{{< relurl "about/trademark" >}}">trademark</a> policy for details.
64+
</p>
65+
66+
67+
</div>
68+
Lines changed: 1 addition & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,5 @@
11
---
2-
order: 6
3-
section: "about"
4-
subsection: "free-and-open-source"
5-
subtitle: "Free and Open Source"
6-
display_class: "three-line"
2+
redirect_to: about
73
aliases:
84
- /about/free-and-open-source/index.html
95
---
10-
<section class="about" id="free-and-open-source">
11-
<h2>Free and Open Source</h2>
12-
<p>Git is released under the <a href="https://opensource.org/licenses/GPL-2.0"
13-
>GNU General Public License version 2.0</a>, which is an
14-
<a href="https://opensource.org/docs/osd">open source license</a>.
15-
The Git project chose to use GPLv2 to guarantee your freedom to
16-
share and change free software---to make sure the software is
17-
free for all its users.</p>
18-
19-
<p>However, we do restrict the use of the term "Git" and the
20-
<a href="{{< relurl "community/logos" >}}">logos</a> to avoid confusion. Please
21-
see our <a href="{{< relurl "trademark" >}}">trademark</a> policy for
22-
details.</p>
23-
24-
<div class="bottom-nav" style="display: block;">
25-
<a href="{{< relurl "about/staging-area" >}}" class="previous" data-section-id="staging-area">← Staging Area</a>
26-
<a href="{{< relurl "about/trademark" >}}" class="next" data-section-id="trademark">Trademark →</a>
27-
</div>
28-
</section>

layouts/partials/masthead.html

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,10 @@
77
very large projects with speed and efficiency.
88
</p>
99
<p>
10-
Git is <a href="{{ relURL "doc" }}">easy to learn</a> and has a
11-
<a href="{{ relURL "about/small-and-fast" }}">tiny footprint with lightning fast performance</a>.
12-
It outclasses SCM tools like Subversion, CVS, Perforce, and ClearCase
13-
with features like <a href="{{ relURL "about/branching-and-merging" }}">cheap local branching</a>,
14-
convenient <a href="{{ relURL "about/staging-area" }}">staging areas</a>, and
15-
<a href="{{ relURL "about/distributed" }}">multiple workflows</a>.
10+
Git is <a href="{{ relURL "about" }}">lightning fast</a> and has a huge ecosystem of
11+
<a href="{{ relURL "tools/guis" }}">GUIs</a>,
12+
<a href="{{ relURL "tools/hosting" }}">hosting services</a>, and
13+
<a href="{{ relURL "tools/command-line" }}">command-line tools</a>.
1614
</p>
1715
</div>
1816
<div class="illustration-wrapper">

layouts/partials/site-root.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<a href="{{ relURL "about" }}">
77
<img src="{{ relURL "images/icons/fa-gears.svg" }}" width="74" height="74" />
88
<h3>About</h3>
9-
<p>The advantages of Git compared to other source control systems.</p>
9+
<p>Git's performance and ecosystem</p>
1010
</a>
1111
</li>
1212
<li>

0 commit comments

Comments
 (0)