From 94a813957869670e5642038577a93ffeead037b1 Mon Sep 17 00:00:00 2001 From: leo Date: Tue, 24 Sep 2024 10:00:31 +0800 Subject: [PATCH] enhance: increase the number of commits to analyze in `OVERVIEW` tab to 40K --- 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 da09c102..adfcc574 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 -40000 --pretty=format:\"%ct$%aN\""; } public Models.Statistics Result()