1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.tr/common/git-status.md
2025-03-07 13:25:35 +02:00

587 B

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|--short]}}

  • Çıktıda izlenmeyen dosyaları gösterme:

git status {{[-uno|--untracked-files=no]}}

  • Çıktıyı özetlenmiş şekilde dal bilgisiyle beraber göster:

git status {{[-sb|--short --branch]}}