git log --pretty=format:%aE | sort | uniq | while read email; do echo "Author: $email" git log --author="$email" --pretty=tformat: --numstat | awk '{add+=$1; del+=$2} END {printf "Added: %d, Deleted: %d\n\n", add, del}' done