Update Diff diagrams with flat look
authorjordanmccullough <jordan@github.com>
Tue, 24 Sep 2013 04:20:54 +0000 (22:20 -0600)
committerjordanmccullough <jordan@github.com>
Tue, 24 Sep 2013 04:20:54 +0000 (22:20 -0600)
presentations/_posts/foundations/diff/0001-01-01-Comparing-Changes.md
presentations/_posts/foundations/diff/0002-01-01-Comparing-to-Staged.md
presentations/_posts/foundations/diff/0003-01-01-Comparing-to-Repo.md
presentations/assets/diagrams/diff/head.png [new file with mode: 0644]
presentations/assets/diagrams/diff/staged.png [new file with mode: 0644]
presentations/assets/diagrams/diff/working.png [new file with mode: 0644]

index 1d68c49..3ef2917 100644 (file)
@@ -4,11 +4,11 @@ layout: slide
 tags: ['diff']
 ---
 
+<img class="diagram" src="assets/diagrams/diff/working.png">
+
        # Show the unstaged changes
        $ git diff
 
-<img class="diagram" src="assets/diagrams/git-diff.png">
-
 {% capture notes %}
 
 Working copy to staging
index 88c622b..71f3530 100644 (file)
@@ -4,10 +4,12 @@ layout: slide
 tags: ['diff']
 ---
 
+<img class="diagram" src="assets/diagrams/diff/staged.png">
+
        # Show the staged changes
        $ git diff --staged
 
-<img class="diagram" src="assets/diagrams/git-diff-staged.png">
+
 
 {% capture notes %}
 
index a7dd080..f203b1f 100644 (file)
@@ -4,10 +4,11 @@ layout: slide
 tags: ['diff']
 ---
 
+<img class="diagram" src="assets/diagrams/diff/head.png">
+
        # Show uncommitted changes
        $ git diff HEAD
 
-<img class="diagram" src="assets/diagrams/git-diff-head.png">
 
 {% capture notes %}
 
diff --git a/presentations/assets/diagrams/diff/head.png b/presentations/assets/diagrams/diff/head.png
new file mode 100644 (file)
index 0000000..2b01f19
Binary files /dev/null and b/presentations/assets/diagrams/diff/head.png differ
diff --git a/presentations/assets/diagrams/diff/staged.png b/presentations/assets/diagrams/diff/staged.png
new file mode 100644 (file)
index 0000000..d34a3cd
Binary files /dev/null and b/presentations/assets/diagrams/diff/staged.png differ
diff --git a/presentations/assets/diagrams/diff/working.png b/presentations/assets/diagrams/diff/working.png
new file mode 100644 (file)
index 0000000..6dfd99c
Binary files /dev/null and b/presentations/assets/diagrams/diff/working.png differ