tldr/pages.it/common/git-rm.md

17 lines
381 B
Markdown

# 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 directory:
`git rm -r {{directory}}`
- Cancella un file dall'indice del repository ma non dal filesystem locale:
`git rm --cached {{file}}`