I've found it's feasible to count total lines changed by a specific author in a "git repository".
I've also found it's feasible to count total lines changed between 2 commits.
git diff --shortstat commit1...commit2.
But I didn't found how to count total lines changed by a specific author between 2 commits.
Actually in my case, there is a branch with several commits from different authors, it's easy to found total lines changed for the Merge request between the branch to master, but I don't know how to find the contribution from an author of the MR.
What I want is like the result of git diff --shortstat, but show only contribution from the specific user.
author:xxx: aa files changed, bb insertions(+), cc deletions(-)