mirror of https://github.com/CrimsonTome/tldr.git
34 lines
623 B
Markdown
34 lines
623 B
Markdown
|
# 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:
|
||
|
|
||
|
`git stage {{percorso/al/file}}`
|
||
|
|
||
|
- 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:
|
||
|
|
||
|
`git stage -p {{percorso/al/file}}`
|
||
|
|
||
|
- Aggiungi all'area di stage in modo interattivo:
|
||
|
|
||
|
`git stage -i`
|