We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 882878d commit 434777dCopy full SHA for 434777d
src/Commands/Statistics.cs
@@ -1,4 +1,5 @@
1
using System;
2
+using SourceGit.ViewModels;
3
4
namespace SourceGit.Commands
5
{
@@ -8,7 +9,7 @@ public Statistics(string repo)
8
9
10
WorkingDirectory = repo;
11
Context = repo;
- Args = $"log --date-order --branches --remotes -40000 --pretty=format:\"%ct$%aN\"";
12
+ Args = $"log --date-order --branches --remotes -{Preference.Instance.MaxHistoryCommits} --pretty=format:\"%ct$%aN\"";
13
}
14
15
public Models.Statistics Result()
0 commit comments