From 026b81cb9a9ff436b3516cae7e3963611c2f8369 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Wed, 10 Mar 2021 16:18:48 +0100 Subject: [PATCH] Improved list-commits.ps1 --- Scripts/list-commits.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scripts/list-commits.ps1 b/Scripts/list-commits.ps1 index f1913f69..105f596c 100755 --- a/Scripts/list-commits.ps1 +++ b/Scripts/list-commits.ps1 @@ -21,7 +21,7 @@ try { if ($lastExitCode -ne "0") { throw "'git fetch --all --recurse-submodules' failed" } if ($Format -eq "compact") { - & git log --pretty=format:'%Cred%h%Creset %C(yellow)%d%Creset %s %C(bold blue)by %an %cr%Creset' --abbrev-commit + & git log --graph --pretty=format:'%Cred%h%Creset%C(yellow)%d%Creset %s %C(bold blue)by %an %cr%Creset' --abbrev-commit } else { & git log }