mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00

* git-send-email: add it translation * git-shortlog: add it translation * git-show-branch: add it translation * git-show-ref: add it translation * git-show: add it translation * git-svn: add it translation * git-sizer: add it translation * git-stage: add it translation * git-status: add it translation * git-stash: add it translation * git-submodule: add it translation * git-subtree: add it translation * git-switch: add it translation * git-tag: add it translation * git-update-ref: add it translation * git-worktree: add it translation * Use snake case for tokens
28 lines
773 B
Markdown
28 lines
773 B
Markdown
# git shortlog
|
|
|
|
> Riassume l'output di `git log`.
|
|
> Maggiori informazioni: <https://git-scm.com/docs/git-shortlog>.
|
|
|
|
- Mostra un riassunto dei commit fatti, raggruppati alfabeticamente per nome dell'autore:
|
|
|
|
`git shortlog`
|
|
|
|
- Mostra un riassunto dei commit fatti, ordinati per numero di commit:
|
|
|
|
`git shortlog -n`
|
|
|
|
- Mostra un riassunto dei commit fatti, raggruppati per identità dell'utente che ha eseguito il commit (nome e email):
|
|
|
|
`git shortlog -c`
|
|
|
|
- Mostra un riassunto degli ultimi 5 commit (richiesti sottoforma di intervallo di revisione):
|
|
|
|
`git shortlog HEAD~{{5}}..HEAD`
|
|
|
|
- Mostra tutti gli utenti, email e numero di commit nel ramo corrente:
|
|
|
|
`git shortlog -sne`
|
|
|
|
- Mostra tutti gli utenti, email e numero di commit in tutti i rami:
|
|
|
|
`git shortlog -sne --all`
|