forked from vivinkv6/10-days-web-development-challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgit.html
36 lines (36 loc) · 1.53 KB
/
git.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<style>
div {
background-image: linear-gradient(rgb(92, 89, 89), rgb(223, 217, 217));
padding: 20px;
}
</style>
</head>
<body>
<div>
<h1>GIT</h1>
<p>
Git is free and open source software for distributed version control:
tracking changes in any set of files, usually used for coordinating work
among programmers collaboratively developing source code during software
development. Its goals include speed, data integrity, and support for
distributed, non-linear workflows (thousands of parallel branches
running on different systems).[9][10][11] Git was originally authored by
Linus Torvalds in 2005 for development of the Linux kernel, with other
kernel developers contributing to its initial development.[12] Since
2005, Junio Hamano has been the core maintainer. As with most other
distributed version control systems, and unlike most client–server
systems, every Git directory on every computer is a full-fledged
repository with complete history and full version-tracking abilities,
independent of network access or a central server.[13] Git is free and
open-source software distributed under the GPL-2.0-only license.
</p>
</div>
</body>
</html>