Last active
January 22, 2022 06:31
-
-
Save mdiener21/c33bebd618dde212fbe5db51ec06bff8 to your computer and use it in GitHub Desktop.
Git log commands for engineering managers
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# git commits per developer | |
git shortlog -sn --no-merges --since "01 January 2019" | |
# a clearer better git log view of commits | |
git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment