mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 03:02:08 +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
447 B
Markdown
16 lines
447 B
Markdown
# git cat-file
|
|
|
|
> Visualizza il contenuto di un oggetto git nel repository o mostrane dimensione e tipo.
|
|
> Maggiori informazioni: <https://git-scm.com/docs/git-cat-file>.
|
|
|
|
- Mostra la dimen[s]ione del commit HEAD in byte:
|
|
|
|
`git cat-file -s HEAD`
|
|
|
|
- Mostra il [t]ipo (blob, albero, commit, tag) di un oggetto git:
|
|
|
|
`git cat-file -t {{8c442dc3}}`
|
|
|
|
- Stam[p]a il contenuto di un oggetto git, formattato in base al tipo:
|
|
|
|
`git cat-file -p {{HEAD~2}}`
|