mirror of https://github.com/CrimsonTome/tldr.git
17 lines
336 B
Markdown
17 lines
336 B
Markdown
|
# git rm
|
|||
|
|
|||
|
> Dosyaları dizin indeksinden ve yerel dosya sisteminden sil.
|
|||
|
> More information: <https://git-scm.com/docs/git-rm>.
|
|||
|
|
|||
|
- Dosyayı dizin indeksinden ve dosya sisteminden sil:
|
|||
|
|
|||
|
`git rm {{dosya}}`
|
|||
|
|
|||
|
- Dizini sil:
|
|||
|
|
|||
|
`git rm -r {{dizin}}`
|
|||
|
|
|||
|
- Dizin indeksinden dosyayı sil lakin yerelde dosyaya dokunma:
|
|||
|
|
|||
|
`git rm --cached {{dosya}}`
|