From 8fbfce3f73d1567a38150c07646480375a911622 Mon Sep 17 00:00:00 2001 From: Snehal Shekatkar Date: Wed, 15 Aug 2018 11:47:23 +0530 Subject: [PATCH 1/2] Fixed the author name In the section 2.3, if one wants to see the changes made by the author Junio Hamano, the author name cannot be gitster. Fixed the same. --- book/02-git-basics/sections/viewing-history.asc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/02-git-basics/sections/viewing-history.asc b/book/02-git-basics/sections/viewing-history.asc index 8c5be5e49..61e0ded79 100644 --- a/book/02-git-basics/sections/viewing-history.asc +++ b/book/02-git-basics/sections/viewing-history.asc @@ -284,7 +284,7 @@ For example, if you want to see which commits modifying test files in the Git so [source,console] ---- -$ git log --pretty="%h - %s" --author=gitster --since="2008-10-01" \ +$ git log --pretty="%h - %s" --author=Junio Hamano --since="2008-10-01" \ --before="2008-11-01" --no-merges -- t/ 5610e3b - Fix testcase failure when extended attributes are in use acd3b9e - Enhance hold_lock_file_for_{update,append}() API From 9520249550a51863fdaf0044fcf9c513afa7d6f0 Mon Sep 17 00:00:00 2001 From: Snehal Shekatkar Date: Fri, 24 Aug 2018 19:35:07 +0530 Subject: [PATCH 2/2] Fixed an author name In the section 2.3, if one wants to see the changes made by the author Junio C Hamano, the author name cannot be gitster. Fixed the same. --- book/02-git-basics/sections/viewing-history.asc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/02-git-basics/sections/viewing-history.asc b/book/02-git-basics/sections/viewing-history.asc index 61e0ded79..6b9894b41 100644 --- a/book/02-git-basics/sections/viewing-history.asc +++ b/book/02-git-basics/sections/viewing-history.asc @@ -284,7 +284,7 @@ For example, if you want to see which commits modifying test files in the Git so [source,console] ---- -$ git log --pretty="%h - %s" --author=Junio Hamano --since="2008-10-01" \ +$ git log --pretty="%h - %s" --author='Junio C Hamano' --since="2008-10-01" \ --before="2008-11-01" --no-merges -- t/ 5610e3b - Fix testcase failure when extended attributes are in use acd3b9e - Enhance hold_lock_file_for_{update,append}() API