I am trying to get authors of changes between 2 commits.
What would be the best for me is something like:
git diff --name-only master
but instead of
--name-only
parameter like
--authors-only
But unfortunately diff does not have such one. There is no restriction I have to use diff command, git log or others are also fine.
I need to it to blame people who caused tests to fail.