Files
tldr/pages.tr/common/git-status.md
2022-10-31 06:52:35 -03:00

22 lines
539 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 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 için: <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`