For a particular file, it is possible to see which author last modified each line in a file (git blame etc). I want to do this at a project level, either by specifying author name or the total for all authors that contributed to the repo.
I understand that git blame only shows who last edited a line, so if someone add a line and someone else edits it, it will show only the second person. That's fine.
Note that this is different from (Git: How to estimate a contribution of a person to my project in terms of added/changed lines of code?) this question, because it covers the entire history of the project, I'm only interested in the current state.