I'm abble to list each author's contribution on inserted or deleted lines or character using git log
like:
git log --shortstat --author "Steve Jobs"
But how to recursively exclude specific folders? If I want to list inserted lines of specific users without take into account the folder test
(and all files it contains) he pushed?
If people had pushed a node_modules
file, the number of inserted lines will drasticaly grow, I don't want to take them into account.