tldr/pages.it/common/git-add.md
Francesco Franchina 28c4d26221
pages.it/*: update path placeholders and "directory" translations (#9031)
- Replace "al" -> "del", "alla" -> "della", etc. in command paths
- Replace all instances of "cartella" with "directory"
- Update contributing-guides/translation-templates/common-arguments.md to
  reflect these changes

Co-authored-by: marchersimon <50295997+marchersimon@users.noreply.github.com>
Co-authored-by: Marco Bonelli <marco@mebeim.net>
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2022-10-20 15:26:58 +02:00

25 lines
455 B
Markdown

# 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/del/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/del/file}}`