From 0729068faace118f4b65b6278c5fdc4c6c9b510c Mon Sep 17 00:00:00 2001 From: Wen Sun Date: Fri, 14 Jun 2024 13:45:19 +0900 Subject: [PATCH] fix: git-summary commit count --- bin/git-summary | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/git-summary b/bin/git-summary index 7a05517e2..d142dac54 100755 --- a/bin/git-summary +++ b/bin/git-summary @@ -77,7 +77,7 @@ active_days() { # commit_count() { # shellcheck disable=SC2086 - git log $MERGES_ARG --oneline "$commit" | wc -l | tr -d ' ' + git rev-list --count "$commit" } #