LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

git-summary

Show repository summary with contribution statistics

TLDR

Show repository summary with commit statistics per author
$ git summary
copy
Show line-based statistics instead of commits
$ git summary --line
copy
Show line statistics for a specific path
$ git summary --line [path/to/dir]
copy
Dedup authors by email
$ git summary --dedup-by-email
copy
Exclude merge commits
$ git summary --no-merges
copy
Show output in tabular format
$ git summary --output-style tabular
copy

SYNOPSIS

git summary [options] [path]

DESCRIPTION

git summary outputs a repository overview including project age, number of active days, total commits, and per-author contribution statistics. Part of git-extras, it provides a quick snapshot of project activity.

PARAMETERS

--line

Show line statistics instead of commits. Can take an optional path to filter.
--dedup-by-email
Deduplicate authors by email address.
--no-merges
Exclude merge commits from the summary.
--output-style style
Output format: tabular or oneline.

SEE ALSO

Copied to clipboard
Kai