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

29 lines
838 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 shortlog
> 'git log' çıktısını özetle.
> Daha fazla bilgi için: <https://git-scm.com/docs/git-shortlog>.
- Yapılan tüm commit'lerin yazar ismiyle alfabetik olarak guruplanmış özetini göster:
`git shortlog`
- Yapılan tüm commit'lerin en çok commit yapan yazar ismi en üstte olacak şekilde özetini göster:
`git shortlog -n`
- Yapılan tüm commit'lerin yazar bilgilerini (isim ve e-posta) gösterecek şekilde özetini göster:
`git shortlog -c`
- En son yapılan 5 commit'in özetini göster (sürüm aralığı belirt):
`git shortlog HEAD~{{5}}..HEAD`
- Mevcut daldaki tüm kullanıcıları, e-postalarını ve yaptıkları commit sayısını göster:
`git shortlog -sne`
- Tüm dallardaki tüm kullanıcıları, e-postalarını ve yaptıkları commit sayısını göster:
`git shortlog -sne --all`