tldr/pages.it/common/git-shortlog.md
Guido Lena Cota d8f628d005
git*: add Italian translation (#4737)
* 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
2020-11-03 08:49:29 +01:00

773 B

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