refactor: show statistics data by authors intead of committers

This commit is contained in:
leo 2024-08-28 18:38:29 +08:00
parent 83b802e357
commit 3d57398d15
No known key found for this signature in database
10 changed files with 30 additions and 32 deletions

View file

@ -10,7 +10,7 @@ namespace SourceGit.Commands
WorkingDirectory = repo;
Context = repo;
Args = $"log --date-order --branches --remotes --since=\"{_statistics.Since()}\" --pretty=format:\"%ct$%cn\"";
Args = $"log --date-order --branches --remotes --since=\"{_statistics.Since()}\" --pretty=format:\"%ct$%an\"";
}
public Models.Statistics Result()