Skip to content

Instantly share code, notes, and snippets.

@leepro
Last active December 29, 2015 01:58
Show Gist options
  • Save leepro/7596564 to your computer and use it in GitHub Desktop.
Save leepro/7596564 to your computer and use it in GitHub Desktop.
git history by days
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