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

22 lines
533 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 status
> Bir git deposundaki dosyalara yapılan değişiklikleri göster.
> Mevcut commit'e kıyasla değiştirilen, eklenen ve silinen dosyaları sıralar.
> Daha fazla bilgi: <https://git-scm.com/docs/git-status>.
- Daha commit'e eklenmemiş değiştirilen dosyaları göster:
`git status`
- Çıktıyı özetlenmiş şekilde göster:
`git status -s`
- Çıktıda izlenmeyen dosyaları gösterme:
`git status --untracked-files=no`
- Çıktıyı özetlenmiş şekilde dal bilgisiyle beraber göster:
`git status -sb`