mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-05 13:46:00 +02:00
git-commit: add Italian translation.
Co-authored-by: Guido Lena Cota <guido.lenacota@kreuzwerker.de>
This commit is contained in:
parent
1539dee8c3
commit
3785c55a75
1 changed files with 20 additions and 0 deletions
20
pages.it/common/git-commit.md
Normal file
20
pages.it/common/git-commit.md
Normal file
|
@ -0,0 +1,20 @@
|
|||
# git commit
|
||||
|
||||
> Salva file nell'area di stage in una nuova istantanea del tuo repository.
|
||||
> Maggiori informazioni: <https://git-scm.com/docs/git-commit>.
|
||||
|
||||
- Committa sul repository i file nell'area di stage con un messaggio:
|
||||
|
||||
`git commit -m {{messaggio}}`
|
||||
|
||||
- Aggiungi all'area di stage tutti i file modificati e committali con un messaggio:
|
||||
|
||||
`git commit -a -m {{messaggio}}`
|
||||
|
||||
- Sostituisci l'ultimo commit con le modifiche attualmente salvate nell'area di stage:
|
||||
|
||||
`git commit --amend`
|
||||
|
||||
- Committa solo i file specificati (tra quelli presenti nell'area di stage):
|
||||
|
||||
`git commit {{percorso/al/file1}} {{percorso/al/file2}}`
|
Loading…
Add table
Reference in a new issue