git*: add Italian translation (#4737)
* git-send-email: add it translation * git-shortlog: add it translation * git-show-branch: add it translation * git-show-ref: add it translation * git-show: add it translation * git-svn: add it translation * git-sizer: add it translation * git-stage: add it translation * git-status: add it translation * git-stash: add it translation * git-submodule: add it translation * git-subtree: add it translation * git-switch: add it translation * git-tag: add it translation * git-update-ref: add it translation * git-worktree: add it translation * Use snake case for tokens
This commit is contained in:
33
pages.it/common/git-stage.md
Normal file
33
pages.it/common/git-stage.md
Normal file
@@ -0,0 +1,33 @@
|
||||
# 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`
|
Reference in New Issue
Block a user