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

* git-archive: add italian translation * git-bundle: add italian translation * git-cat-file: add italian translation * git-describe: add italian translation * git-ignore: add italian translation * git-instaweb: add italian translation * git-lfs: add italian translation * git-log: add italian translation * git-ls-remote: add italian translation * git-ls-tree: add italian translation
16 lines
428 B
Markdown
16 lines
428 B
Markdown
# git ls-tree
|
|
|
|
> Elenca il contenuto di un oggetto albero.
|
|
> Maggiori informazioni: <https://git-scm.com/docs/git-ls-tree>.
|
|
|
|
- Mostra il contenuto dell'albero su un ramo:
|
|
|
|
`git ls-tree {{nome_ramo}}`
|
|
|
|
- Mostra il contenuto dell'albero su un commit, procedendo ricorsivamente nei sotto-alberi:
|
|
|
|
`git ls-tree -r {{hash_commit}}`
|
|
|
|
- Mostra solo il nome dei file dell'albero su un commit:
|
|
|
|
`git ls-tree --name-only {{hash_commit}}`
|