1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.it/common/git-blame.md
Managor 435cb8ce29
*: fix style guide issues part 3 (#15786)
Co-authored-by: Darío Hereñú <magallania@gmail.com>
2025-03-07 13:43:12 +02:00

12 lines
418 B
Markdown

# git blame
> Mostra hash del commit ed ultimo autore per ogni riga di un file.
> Maggiori informazioni: <https://git-scm.com/docs/git-blame>.
- Stampa il contenuto di un file annotando ogni riga con l'hash del commit e il nome dell'autore:
`git blame {{file}}`
- Stampa il contenuto di un file annotando ogni riga con l'hash del commit e l'indirizzo email dell'autore:
`git blame {{[-e|--show-email]}} {{file}}`