keep changes
git filter-branch --commit-filter '
if [ "$GIT_AUTHOR_NAME" = "Darl McBribe" ];
then
skip_commit "$@";
else
git commit-tree "$@";
fi' HEAD
https://gist.github.com/wumpz/5846559
git shortlog -e -s -n
git shortlog -s -n --all --no-merges
add --no-merges
to exclude statistics from merge commits.