|
1 | 1 | --- |
2 | | -redirect_to: about/branching-and-merging |
3 | 2 | url: /about.html |
| 3 | +section: "about" |
4 | 4 | aliases: |
5 | 5 | - /about/index.html |
6 | 6 | --- |
| 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 | + |
0 commit comments