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

Add Italian translation for: - git - git-add - git-am - git-bisect - git-blame - git-branch - git-check-ignore - git-checkout - git-cherry-pick - git-clean
12 lines
399 B
Markdown
12 lines
399 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 {{file}}`
|