1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 13:42:07 +02:00
tldr/pages.tr/common/git-rm.md

342 B

git rm

Dosyaları dizin indeksinden ve yerel dosya sisteminden sil. Daha fazla bilgi için: 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}}