-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (45 loc) · 1.49 KB
/
index.html
File metadata and controls
48 lines (45 loc) · 1.49 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Git Tutorial for deployments</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header></header>
<div id="content-wrapper">
<div id="content">
<h1>Git Tutorial for Deployments</h1>
<p>I hope this works.</p>
<p>Did it work?</p>
<p>Yes! It works!</p>
<p>Testing credential.helper cache <strong>[this is the test]</strong> <em>(test failed)</em></p>
<div id="blog">
<h2>Blog</h2>
<div class="article">
<h3>Working on more git</h3>
<em>March 4th, 2014</em>
<p>Planning to add more posts each day using sublime, iterm, and git to deploy. Practice makes perfect.</p>
</div>
<div class="article">
<h3>Undoing in git</h3>
<em>March 12th, 2014</em>
<p>I have grasped the concept of undoing changes and commits using git. I would say my prefered method is reverting to a previous commit using:</p>
<pre><code>git revert 8s4uips34</code></pre>
<p>Simply because it reverts to a previous commit as a new commit and no data is lost as it would is a <code>reset</code></p>
</div>
<div class="article">
<h3>Next up ideas</h3>
<em>March 12th, 2014</em>
<p>Make blog using object oriented programming in php with classes for user and post. Coming soon...</p>
</div>
<h1>Testing content</h1>
<h1>Testing content again</h1>
</div>
</div>
</div>
<footer>
<p>Copyright 2014 - Testing</p>
</footer>
</body>
</html>