summaryrefslogtreecommitdiffstats
path: root/bin/git/git-author-stat
blob: 4747fce78059bdd7bfe4ed8ae79b09af7c49fbcd (plain) (blame)
1
2
3
4
5
6
7
8
#!/bin/bash

git log "$@" | \
git shortlog | \
perl -ne 'print if/^\S+/' | \
perl -pe 's/(.*)\((\d+)\).*/$2: $1/' | \
sort -gr | \
less -MSi;