mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-24 01:22:10 +02:00

- Replace "al" -> "del", "alla" -> "della", etc. in command paths - Replace all instances of "cartella" with "directory" - Update contributing-guides/translation-templates/common-arguments.md to reflect these changes Co-authored-by: marchersimon <50295997+marchersimon@users.noreply.github.com> Co-authored-by: Marco Bonelli <marco@mebeim.net> Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
16 lines
381 B
Markdown
16 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}}`
|