Last active
December 29, 2015 01:58
-
-
Save leepro/7596564 to your computer and use it in GitHub Desktop.
git history by days
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 log --date=iso --pretty=format:"%h|%an|%ad|%s" \ | |
| awk '{ split($0,a,"|"); split(a[3],b," "); print b[1]; }' \ | |
| uniq -c \ | |
| awk '{ print $2,$1 }' \ | |
| sort -r |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment