2020-11-03 07:49:29 +00:00
|
|
|
# git stage
|
|
|
|
|
|
|
|
> Aggiungi file all'area di stage.
|
|
|
|
> Sinonimo di `git add`.
|
|
|
|
> Maggiori informazioni: <https://git-scm.com/docs/git-stage>.
|
|
|
|
|
|
|
|
- Aggiungi un file all'indice:
|
|
|
|
|
2022-10-20 14:26:58 +01:00
|
|
|
`git stage {{percorso/del/file}}`
|
2020-11-03 07:49:29 +00:00
|
|
|
|
|
|
|
- Aggiungi tutti i file (tracciati e non):
|
|
|
|
|
|
|
|
`git stage -A`
|
|
|
|
|
|
|
|
- Aggiungi solo file già tracciati:
|
|
|
|
|
|
|
|
`git stage -u`
|
|
|
|
|
|
|
|
- Aggiungi anche file ignorati:
|
|
|
|
|
|
|
|
`git stage -f`
|
|
|
|
|
|
|
|
- Aggiungi parti di file all'area di stage in modo interattivo:
|
|
|
|
|
|
|
|
`git stage -p`
|
|
|
|
|
|
|
|
- Aggiungi parti di un dato file all'area di stage in modo interattivo:
|
|
|
|
|
2022-10-20 14:26:58 +01:00
|
|
|
`git stage -p {{percorso/del/file}}`
|
2020-11-03 07:49:29 +00:00
|
|
|
|
|
|
|
- Aggiungi all'area di stage in modo interattivo:
|
|
|
|
|
|
|
|
`git stage -i`
|