git-grep: add Italian translation.

Co-authored-by: Guido Lena Cota <guido.lenacota@kreuzwerker.de>
client-spec/clarity
Marco Bonelli 2020-01-10 21:48:30 +01:00 committed by Iván
parent be3ea1e88b
commit 1d759b1e2b
1 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,25 @@
# git-grep
> Cerca stringhe nello storico dei file tracciati nel repository.
> Supporta molti degli stessi parametri accettati dal comando `grep` tradizionale.
> Maggiori informazioni: <https://git-scm.com/docs/git-grep>.
- Cerca una stringa nei file tracciati:
`git grep {{stringa_ricercata}}`
- Cerca una stringa nei file tracciati che soddisfano un dato pattern:
`git grep {{stringa_ricercata}} -- {{file_glob_pattern}}`
- Cerca una stringa nei file tracciati, sottomoduli inclusi:
`git grep --recurse-submodules {{stringa_ricercata}}`
- Cerca una stringa in uno dato momento della cronologia del repository:
`git grep {{stringa_ricercata}} {{HEAD~2}}`
- Cerca una stringa in tutti i rami:
`git grep {{stringa_ricercata}} $(git rev-list --all)`