mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 17:42:07 +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
36 lines
965 B
Markdown
36 lines
965 B
Markdown
# git show-branch
|
|
|
|
> Mostra rami e relativi commit.
|
|
> Maggiori informazioni: <https://git-scm.com/docs/git-show-branch>.
|
|
|
|
- Mostra un sommario degli ultimi commit in un ramo:
|
|
|
|
`git show-branch {{nome_ramo|riferimento|commit}}`
|
|
|
|
- Confronta commit nella cronologia di più commit o rami:
|
|
|
|
`git show-branch {{nome_ramo|riferimento|commit}}`
|
|
|
|
- Confronta tutti i rami remoti tracciati:
|
|
|
|
`git show-branch --remotes`
|
|
|
|
- Confronta i rami locali e remoti:
|
|
|
|
`git show-branch --all`
|
|
|
|
- Mostra gli ultimi commit di tutti i rami:
|
|
|
|
`git show-branch --all --list`
|
|
|
|
- Confronta un dato ramo con quello corrente:
|
|
|
|
`git show-branch --current {{commit|nome_ramo|riferimento}}`
|
|
|
|
- Mostra il nome del commit e non il nome relativo:
|
|
|
|
`git show-branch --sha1-name --current {{current|nome_ramo|riferimento}}`
|
|
|
|
- Mostra un numero aggiuntivo di commit oltre il predecessore comune:
|
|
|
|
`git show-branch --more {{5}} {{commit|nome_ramo|riferimento}} {{commit|nome_ramo|riferimento}} {{...}}`
|