Last active
March 28, 2018 17:06
-
-
Save igbanam/92e6424cfd53bcc16e5e2cff629ed5f5 to your computer and use it in GitHub Desktop.
Top Performers
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
# ~/.gitconfig | |
... other stuff | |
[alias] | |
top-performers = shortlog --summary --numbered --no-merges | |
# using this alias in the shell | |
$ git top-performers | |
12 Alice Doe | |
5 Bob Doe | |
3 John Doe | |
1 Jane Deer | |
# you can also check different folders | |
$ git top-performers config | |
4 Bob Doe | |
1 Jane Deer |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment