From 49d5b679fc906e657a43b6d81f4493214c0caabb Mon Sep 17 00:00:00 2001 From: Jens Fischer Date: Mon, 23 Sep 2024 16:28:07 +0200 Subject: [PATCH] Respect .mailmap files in statistics see https://git-scm.com/docs/gitmailmap --- src/Commands/Statistics.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Commands/Statistics.cs b/src/Commands/Statistics.cs index 8d426d09..da09c102 100644 --- a/src/Commands/Statistics.cs +++ b/src/Commands/Statistics.cs @@ -8,7 +8,7 @@ namespace SourceGit.Commands { WorkingDirectory = repo; Context = repo; - Args = $"log --date-order --branches --remotes -20000 --pretty=format:\"%ct$%an\""; + Args = $"log --date-order --branches --remotes -20000 --pretty=format:\"%ct$%aN\""; } public Models.Statistics Result()