git*: add Italian translation (#4734)
* git-prune: add it translation * git-reflog: add it translation * git-remote: add it translation * git-repack: add it translation * git-restore: add it translation * git-rev-parse: add it translation * git-rev-list: add it translation * git-rm: add it translation * git-rebase: add it translation * git-revert: add it translation * git-reset: add it translation * git-replace: add it translation * git-reset: separate file tokens * Use correct suffix for multiple tokens Co-authored-by: Axel Navarro <navarroaxel@gmail.com> * Integrate updates in #4533 Co-authored-by: Axel Navarro <navarroaxel@gmail.com>
This commit is contained in:
20
pages.it/common/git-revert.md
Normal file
20
pages.it/common/git-revert.md
Normal file
@@ -0,0 +1,20 @@
|
||||
# git revert
|
||||
|
||||
> Crea nuovi commit che invertano i risultati dei commit precedenti.
|
||||
> Maggiori informazioni: <https://git-scm.com/docs/git-revert>.
|
||||
|
||||
- Inverti il commit più recente:
|
||||
|
||||
`git revert {{@}}`
|
||||
|
||||
- Inverti il quintùltimo commit:
|
||||
|
||||
`git revert HEAD~{{4}}`
|
||||
|
||||
- Inverti più commit:
|
||||
|
||||
`git revert {{nome_ramo~5..nome_ramo~2}}`
|
||||
|
||||
- Inverti senza creare nuovi commit, ma modificando l'albero di lavoro:
|
||||
|
||||
`git revert -n {{0c01a9..9a1743}}`
|
Reference in New Issue
Block a user