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:
Guido Lena Cota
2020-11-02 13:42:32 +01:00
committed by GitHub
parent a722b14d86
commit 83ddae952d
12 changed files with 244 additions and 0 deletions

16
pages.it/common/git-rm.md Normal file
View File

@@ -0,0 +1,16 @@
# git rm
> Cancella file dall'indice del repository e dal filesystem locale.
> Maggiori informazioni: <https://git-scm.com/docs/git-rm>.
- Cancella un file dall'indice del repository e dal filesystem:
`git rm {{file}}`
- Cancella una cartella:
`git rm -r {{cartella}}`
- Cancella un file dall'indice del repository ma non dal filesystem locale:
`git rm --cached {{file}}`