From d2d4ccefc95dbbaf0ad61926c8bbb937a2aa4fe8 Mon Sep 17 00:00:00 2001 From: Justin Alex Paramanandan <1155821+jusuchin85@users.noreply.github.com> Date: Mon, 28 Oct 2024 10:49:38 +1100 Subject: [PATCH] Minor fix to command execution --- pro-git/chapter-02/log-output.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pro-git/chapter-02/log-output.md b/pro-git/chapter-02/log-output.md index 000632b..e3dae1f 100644 --- a/pro-git/chapter-02/log-output.md +++ b/pro-git/chapter-02/log-output.md @@ -74,7 +74,11 @@ For example, to see commits in the Git repository [^1] that: - not merge commits ```shell -git log --pretty=format:"%h - %an, %ad : %s" --author="Junio C Hamano" --since="2008-10-01" --before="2008-11-01" --no-merges -- t/ +git log --pretty=format:"%h - %an, %ad : %s" \ + --author="Junio C Hamano" \ + --since="2008-10-01" \ + --before="2008-11-01" \ + --no-merges -- t/ 5610e3b031 - Junio C Hamano, Sun Oct 19 22:51:17 2008 -0700 : Fix testcase failure when extended attributes are in use acd3b9eca8 - Junio C Hamano, Fri Oct 17 15:44:39 2008 -0700 : Enhance hold_lock_file_for_{update,append}() API