fix: git-summary commit count (#1147)

* fix: git-summary commit count

* fixup! fix: git-summary commit count
This commit is contained in:
Wen Sun 2024-06-18 12:13:07 +09:00 committed by GitHub
parent e34dea9b7a
commit b766a655ce
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -77,7 +77,7 @@ active_days() {
#
commit_count() {
# shellcheck disable=SC2086
git log $MERGES_ARG --oneline "$commit" | wc -l | tr -d ' '
git rev-list $MERGES_ARG --count "$commit"
}
#