mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-08 10:06:01 +02:00

Co-authored-by: Juri Dispan <juri.dispan@posteo.net> Co-authored-by: CleanMachine1 <78213164+CleanMachine1@users.noreply.github.com> Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
21 lines
568 B
Markdown
21 lines
568 B
Markdown
# git summary
|
|
|
|
> Display information about a Git repository.
|
|
> Part of `git-extras`.
|
|
> More information: <https://manned.org/git-summary>.
|
|
|
|
- Display data about a Git repository:
|
|
|
|
`git summary`
|
|
|
|
- Display data about a Git repository since a commit-ish:
|
|
|
|
`git summary {{commit|branch_name|tag_name}}`
|
|
|
|
- Display data about a Git repository, merging committers using different emails into 1 statistic for each author:
|
|
|
|
`git summary --dedup-by-email`
|
|
|
|
- Display data about a Git repository, showing the number of lines modified by each contributor:
|
|
|
|
`git summary --line`
|