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

33 lines
568 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# git add
> Değiştirilmiş dosyaları indekse ekle.
> Daha fazla bilgi: <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`