Revised Commit shorthand examples to match slide deck terminal style
authorjordanmccullough <jordan@github.com>
Mon, 30 Sep 2013 22:23:47 +0000 (16:23 -0600)
committerjordanmccullough <jordan@github.com>
Mon, 30 Sep 2013 22:23:47 +0000 (16:23 -0600)
Updated shorthand reference of ancestor and parent with clearer
examples and descriptions.

presentations/_posts/foundations/commit/0005-01-01-Current-Branch-Tip.md [moved from presentations/_posts/foundations/commit/0005-01-01-Shorthand.md with 72% similarity]
presentations/_posts/foundations/commit/0006-01-01-Parent-Reference.md [new file with mode: 0644]
presentations/_posts/foundations/commit/0006-01-01-Shorthand.md [deleted file]
presentations/_posts/foundations/commit/0007-01-01-Ancestor-Reference.md [moved from presentations/_posts/foundations/commit/0007-01-01-Shorthand.md with 52% similarity]

diff --git a/presentations/_posts/foundations/commit/0006-01-01-Parent-Reference.md b/presentations/_posts/foundations/commit/0006-01-01-Parent-Reference.md
new file mode 100644 (file)
index 0000000..ec0da41
--- /dev/null
@@ -0,0 +1,16 @@
+---
+chapter: Commit
+layout: slide
+tags: ['commit']
+---
+
+    # Parent / One Prior to Last Commit
+    HEAD^
+
+    # Parent of Specific Commit Ref
+    94fc2^
+
+{% capture notes %}
+
+{% endcapture %}
+{% include hydeslides/core/notes %}
\ No newline at end of file
diff --git a/presentations/_posts/foundations/commit/0006-01-01-Shorthand.md b/presentations/_posts/foundations/commit/0006-01-01-Shorthand.md
deleted file mode 100644 (file)
index 3cd4c06..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
----
-chapter: Commit
-layout: slide
-tags: ['commit']
----
-
-Parent / One Prior to Last Commit
-
-94fc2__^__
-
-
-
-
-
-{% capture notes %}
-
-{% endcapture %}
-{% include hydeslides/core/notes %}
\ No newline at end of file
@@ -4,12 +4,10 @@ layout: slide
 tags: ['commit']
 ---
 
-Three Prior to Last Commit using `HEAD`
-
+    # Three Prior to Last Commit
     HEAD~3
 
-or with a hash-based reference
-
+    # Three Prior of Specific Commit Ref
     3ec81~3
 
 {% capture notes %}