I'm trying to find the number of lines authored by each user in the CURRENT code base, ignoring certain file types.
Things I tried:
git shortlog -s
shows commits, not linesHow to count total lines changed by a specific author in a Git repository?
git log --pretty=tformat: --numstat \ | gawk '{ add += $1; subs += $2; loc += $1 - $2 } END { printf "added lines: %s removed lines: %s total lines: %s\n", add, subs, loc }' -
shows all users