Files
cheatsheet-tldr/tldr/git-summary
2025-05-06 00:19:54 +00:00

27 lines
661 B
Plaintext

---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# 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`