mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
27 lines
661 B
Plaintext
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`
|