mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-10 20:42:23 +03:00
d8f628d005
* 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
773 B
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