-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (23 loc) · 913 Bytes
/
index.html
File metadata and controls
23 lines (23 loc) · 913 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Git Software Configuration management</title>
<link rel="stylesheet" type="text/css" href="style.css">
<script type="text/javascript" src="scripts.js"></script>
</head>
<body>
<h1>Git - Software Configuration Managment (SCM)</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.</p>
<a href="https://git-scm.com">More about Git</a><br><br>
<button onclick="changeBg();">Change Background</button>
<h2>Git Topics</h2>
<ul>
<li>Merge</li>
<li>Rebase</li>
<li>Squash</li>
<li>Distributed workflow</li>
</ul>
</body>
</html>