tldr/pages.tr/common/git-add.md

33 lines
574 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 add
> Değiştirilmiş dosyaları indekse ekle.
> Daha fazla bilgi için: <https://git-scm.com/docs/git-add>.
- İndekse bir dosya ekle:
`git add {{örnek/dosya}}`
- Tüm (izlenen veya izlenmeyen) dosyaları ekle:
`git add -A`
- Yalnızca izlenen dosyaları ekle:
`git add -u`
- Yoksayılan dosyaları dahi ekle:
`git add -f`
- Dosyaların parçalarını etkileşimli olarak sahnele:
`git add -p`
- Belirtilen dosyaların parçalarını etkileşimli olarak sahnele:
`git add -p {{örnek/dosya}}`
- Bir dosyayı etkileşimli olarak sahnele:
`git add -i`