forked from ben-edgar/GitTechnicaHackathon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhackathon.html
More file actions
68 lines (57 loc) · 1.59 KB
/
Copy pathhackathon.html
File metadata and controls
68 lines (57 loc) · 1.59 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<html>
<head>
<meta charset="utf-8">
<title>Welcome to the Appian Git and Teamwork Workshop</title>
<basefont size=4>
<style>
table {
width:100%;
}
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
th, td {
padding: 5px;
text-align: left;
}
</style>
</head>
<body bgcolor="#D3D3D3">
<h1>Welcome to the Appian Git and Teamwork Workshop</h1>
<h3>Purpose of Git</h2>
<ol>
<li>Record changes to files over time</li>
<li>Undo changes or recover files</li>
<li>Compare changes over time</li>
<li>See who last modified a file</li>
<li>Determine when code or a bug was introduced</li>
</ol>
<h4>TL;DR it's easy to fix mistakes!</h4>
<h3 align=center>Tell us about yourself!</h3>
<table>
<tr>
<th>Name</th>
<th>Favorite Cereal</th>
<th>Fun Fact (or favorite programming language)</th>
</tr>
<tr>
<td>Megan</td>
<td>Lucky Charms</td>
<td>I like planning events</td>
</tr>
<tr>
<td>Ben</td>
<td>Reeses Puffs</td>
<td>I like baseball</td>
</tr>
</table>
<p>Remember, you can view the HTML code from this or any other page by using the "View Page Source" command of your browser.</p>
<h2>List about why I like git</h2>
<ol>
<li>It works with github</li>
<li>Changing my local branch to any point in history is really easy</li>
<li>It's easy to merge with the master branch</li>
</ol>
</body>
</html>