mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 22:42:08 +02:00

- Replace "al" -> "del", "alla" -> "della", etc. in command paths - Replace all instances of "cartella" with "directory" - Update contributing-guides/translation-templates/common-arguments.md to reflect these changes Co-authored-by: marchersimon <50295997+marchersimon@users.noreply.github.com> Co-authored-by: Marco Bonelli <marco@mebeim.net> Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
20 lines
391 B
Markdown
20 lines
391 B
Markdown
# git show-ref
|
|
|
|
> Elenca i riferimenti.
|
|
> Maggiori informazioni: <https://git-scm.com/docs/git-show-ref>.
|
|
|
|
- Mostra tutti i riferimenti nel repository:
|
|
|
|
`git show-ref`
|
|
|
|
- Mostra solo i riferimenti agli HEAD:
|
|
|
|
`git show-ref --heads`
|
|
|
|
- Mostra solo i riferimenti ai tag:
|
|
|
|
`git show-ref --tags`
|
|
|
|
- Verifica che un certo riferimento esista:
|
|
|
|
`git show-ref --verify {{percorso/del/riferimento}}`
|