diff --git a/docs/index.html b/docs/index.html index 5928d37..77797bf 100644 --- a/docs/index.html +++ b/docs/index.html @@ -33,8 +33,7 @@

Git Immersion

Start Git Immersion @@ -45,7 +44,7 @@

Git Immersion

Creative Commons BY-NC-SA 3.0 License.

-

️️❤️ Maintained with love for our dear friend Jim Weirich.

+

️❤️ Forked from GitImmersion project by Jim Weirich.

diff --git a/docs/lab_03.html b/docs/lab_03.html index 843c2b4..fb6524e 100644 --- a/docs/lab_03.html +++ b/docs/lab_03.html @@ -123,7 +123,7 @@

Execute:

Output:

$ git add hello.js
 $ git commit -m "First Commit"
-[master (root-commit) 3c56dd7] First Commit
+[master (root-commit) 284070d] First Commit
  1 file changed, 1 insertion(+)
  create mode 100644 hello.js
 
diff --git a/docs/lab_09.html b/docs/lab_09.html index c79de58..c02424f 100644 --- a/docs/lab_09.html +++ b/docs/lab_09.html @@ -149,7 +149,7 @@

Execute:

You should see …

Output:

$ git commit -m "Added a default value"
-[master efb122a] Added a default value
+[master 20a6c79] Added a default value
  1 file changed, 3 insertions(+), 1 deletion(-)
 $ git status
 On branch master
diff --git a/docs/lab_10.html b/docs/lab_10.html
index dd67663..97858a7 100644
--- a/docs/lab_10.html
+++ b/docs/lab_10.html
@@ -104,27 +104,27 @@ 

Execute:

You should see …

Output:

$ git log
-commit 5b16eb42366a4beec35ca6f88fc5a91db86257bf
+commit 59992ce6a7cd58a6c80189b137964eea3d1df17d
 Author: Halle Bot <halle (at) operationspark.org>
-Date:   Thu Jun 27 13:22:21 2019 -0500
+Date:   Thu Jun 27 14:45:18 2019 -0500
 
     Added a comment
 
-commit efb122ae67817090b5f52fb67d40d11e5c13b129
+commit 20a6c79e9355f7f5fc8aae379a7fdee0f625c955
 Author: Halle Bot <halle (at) operationspark.org>
-Date:   Thu Jun 27 13:22:21 2019 -0500
+Date:   Thu Jun 27 14:45:18 2019 -0500
 
     Added a default value
 
-commit e5f7c2413518b518d99050927695e81a6b70a516
+commit 6915d417a8ab6ac71184cde8f5b068026af43d08
 Author: Halle Bot <halle (at) operationspark.org>
-Date:   Thu Jun 27 13:22:20 2019 -0500
+Date:   Thu Jun 27 14:45:17 2019 -0500
 
     Using process.argv
 
-commit 3c56dd7dd07462e77a58fe550d5b1f5d4494ce68
+commit 284070da97229f2f8ff812608318ba03412205b5
 Author: Halle Bot <halle (at) operationspark.org>
-Date:   Thu Jun 27 13:22:20 2019 -0500
+Date:   Thu Jun 27 14:45:17 2019 -0500
 
     First Commit
 
@@ -136,10 +136,10 @@

Execute:

You should see …

Output:

$ git log --pretty=oneline
-5b16eb42366a4beec35ca6f88fc5a91db86257bf Added a comment
-efb122ae67817090b5f52fb67d40d11e5c13b129 Added a default value
-e5f7c2413518b518d99050927695e81a6b70a516 Using process.argv
-3c56dd7dd07462e77a58fe550d5b1f5d4494ce68 First Commit
+59992ce6a7cd58a6c80189b137964eea3d1df17d Added a comment
+20a6c79e9355f7f5fc8aae379a7fdee0f625c955 Added a default value
+6915d417a8ab6ac71184cde8f5b068026af43d08 Using process.argv
+284070da97229f2f8ff812608318ba03412205b5 First Commit
 

Controlling Which Entries are Displayed

There are a lot of options for selecting which entries are displayed in the log. Play around with the following options:

@@ -159,10 +159,10 @@

Execute:

It looks like this:

Output:

$ git log --pretty=format:'%h %ad | %s%d [%an]' --graph --date=short
-* 5b16eb4 2019-06-27 | Added a comment (HEAD -> master) [Halle Bot]
-* efb122a 2019-06-27 | Added a default value [Halle Bot]
-* e5f7c24 2019-06-27 | Using process.argv [Halle Bot]
-* 3c56dd7 2019-06-27 | First Commit [Halle Bot]
+* 59992ce 2019-06-27 | Added a comment (HEAD -> master) [Halle Bot] +* 20a6c79 2019-06-27 | Added a default value [Halle Bot] +* 6915d41 2019-06-27 | Using process.argv [Halle Bot] +* 284070d 2019-06-27 | First Commit [Halle Bot]

Let’s look at it in detail: