git log --author="Author Name" --pretty=tformat: --numstat | \
awk '{ add += $1; del += $2 } END { printf "Added: %d lines, Removed: %d lines\n", add, del }'

git 常用命令