Can git blame be used to view all lines in the current codebase committed by a single user?
Closest I could get was
git log -p --author=<author> <filename>
or
git blame <filename> | grep <authorname>