git-commands: add Italian translations (#3318)
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
This commit is contained in:

committed by
Marco Bonelli

parent
8e89822467
commit
4ee919925d
24
pages.it/common/git-add.md
Normal file
24
pages.it/common/git-add.md
Normal file
@@ -0,0 +1,24 @@
|
||||
# git add
|
||||
|
||||
> Aggiungi file nuovi o modificati all'area di stage.
|
||||
> Maggiori informazioni: <https://git-scm.com/docs/git-add>.
|
||||
|
||||
- Aggiungi un file all'area di stage:
|
||||
|
||||
`git add {{percorso/al/file}}`
|
||||
|
||||
- Aggiungi tutti i file (tracciati e non tracciati):
|
||||
|
||||
`git add -A`
|
||||
|
||||
- Aggiungi solo i file già tracciati:
|
||||
|
||||
`git add -u`
|
||||
|
||||
- Aggiungi anche i file ignorati:
|
||||
|
||||
`git add -f`
|
||||
|
||||
- Aggiungi parti di un file in modo interattivo:
|
||||
|
||||
`git add -p {{percorso/al/file}}`
|
Reference in New Issue
Block a user