From ed39d4663a66cfac3dcb4092d8ba6ce1f26b278b Mon Sep 17 00:00:00 2001 From: Markus Opolka Date: Thu, 1 Dec 2022 11:56:25 +0100 Subject: [PATCH] Add small bonus to git history lab regarding git log --- day1/04_Commits/04_History.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/day1/04_Commits/04_History.md b/day1/04_Commits/04_History.md index e365895..5620567 100644 --- a/day1/04_Commits/04_History.md +++ b/day1/04_Commits/04_History.md @@ -56,6 +56,8 @@ also compare specific commits. * Use `git diff` to compare changes between specific revisions * Use `git blame .gitignore` to see the authors for the file +Bonus: Try `git log` with the `--graph` and `--oneline` option. + ~~~SECTION:handouts~~~ **** @@ -81,6 +83,8 @@ also compare specific commits. * Use `git diff` to compare changes between specific revisions * Use `git blame .gitignore` to see the authors for the file +Bonus: Try `git log` with the `--graph` and `--oneline` option. + !SLIDE supplemental solutions # Lab ~~~SECTION:MAJOR~~~.~~~SECTION:MINOR~~~: Proposed Solution ****