mirror of https://github.com/CrimsonTome/tldr.git
17 lines
379 B
Markdown
17 lines
379 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 cartella:
|
||
|
|
||
|
`git rm -r {{cartella}}`
|
||
|
|
||
|
- Cancella un file dall'indice del repository ma non dal filesystem locale:
|
||
|
|
||
|
`git rm --cached {{file}}`
|