From aa49a0f960c2a13b9874c8e1410917e9bd69dda7 Mon Sep 17 00:00:00 2001
From: Daniel Duarte Tojal <daniel.duarte.001@student.uni.lu>
Date: Thu, 29 Aug 2019 13:19:36 +0200
Subject: [PATCH] hexadecimal commit refs

---
 2019/2019-09-09_testCourseAdv/slides/chPickIntro.md    |  2 +-
 .../slides/rebase-iPresentation3.md                    | 10 +++++-----
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/2019/2019-09-09_testCourseAdv/slides/chPickIntro.md b/2019/2019-09-09_testCourseAdv/slides/chPickIntro.md
index 60ac481d..785945db 100644
--- a/2019/2019-09-09_testCourseAdv/slides/chPickIntro.md
+++ b/2019/2019-09-09_testCourseAdv/slides/chPickIntro.md
@@ -1,4 +1,4 @@
-## Git Cherry-pick
+## Cherry-picking
 
 * Cherry picking is another very useful tool to work with.
 * It enables the user to pick specific commits from a list of commits.
diff --git a/2019/2019-09-09_testCourseAdv/slides/rebase-iPresentation3.md b/2019/2019-09-09_testCourseAdv/slides/rebase-iPresentation3.md
index d02b2fa7..41c9f133 100644
--- a/2019/2019-09-09_testCourseAdv/slides/rebase-iPresentation3.md
+++ b/2019/2019-09-09_testCourseAdv/slides/rebase-iPresentation3.md
@@ -3,18 +3,18 @@
 The prompt shows up:
 
 ```bash
-$ pick 93fshjw add first name to attendee list
-$ pick 47fh35f add second name to attendee list
+$ pick 1234567 add first name to attendee list
+$ pick 890abcd add second name to attendee list
 ```
 
 The keywords should be changed to:
 
 ```bash
-$ reword 93fshjw add first name to attendee list
-$ fixup 47fh35f add second name to attendee list
+$ reword 1234567 add first name to attendee list
+$ fixup 890abcd add second name to attendee list
 ```
 
-Upon confirming, change the message of commit 93fshjw:
+Upon confirming, change the message of commit 1234567:
 
 ```bash
 $ Add Name1 and Name2 to the attendee list
-- 
GitLab