I'm preparing changelog for a release and doing some statistic.
It's quite easy to list contributors from previous release:
git shortlog -s -e -n TAG..
reviewers:
git log TAG.. | grep -Ei '(reviewed|acked)-by:' |sed 's/.*by: //' | sort | uniq -c | sort -n -r
committers:
git shortlog -s -e -n -c TAG..
But how to list new contributors (authors) since TAG (e.g. those who haven't been committing before TAG)?