tldr/pages.tr/common/git-checkout-index.md

21 lines
656 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# git checkout-index
> Dosyaları indeksten çalışma ağacına kopyala.
> Daha fazla bilgi için: <https://git-scm.com/docs/git-checkout-index>.
- Son commit'den beri silinen dosyaları geri döndür:
`git checkout-index --all`
- Son commit'den beri silinen veya değiştirilen dosyaları geri döndür:
`git checkout-index --all --force`
- Son commit'den beri değiştirilen dosyaları geri döndür ancak silinenleri yoksay:
`git checkout-index --all --force --no-create`
- Tüm ağacın bir kopyasını belirtilen dizinde dışa aktar (sondaki eğik çizgi önemli):
`git checkout-index --all --force --prefix={{dışa/aktarılacak/dizin/}}`