-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
37 lines (34 loc) · 1.17 KB
/
index.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
37
<html>
<head>
<title>Learning Git</title>
<meta content="width=device-width,maximum-scale=1.0,initial-scale=1.0,minimum-scale=1.0,user-scalable=yes" name="viewport">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link href='./assets/css/index.css' media='all' rel='stylesheet'>
</head>
<body>
<nav>
<!-- stupid change -->
<h1>We Are Learning Git!</h1>
</nav>
<div class="command-row">
<div class="command-column">
<h2>Commiting Changes</h2>
<div class="command-item">
<h4>git status</h4>
<p>
list which files has changed from previous commit
</p>
</div>
</div>
<div class="command-column">
<h2>Branching</h2>
<div class="command-item">
<h4>git branch</h4>
<p>
list out all the branches in your repository
</p>
</div>
</div>
</div>
</body>
</html>