I'd like some help from the git blame/bash/awk gurus. I want to get a list all the people, who appear in the git blame of each file in a particular group of files. Example:
- files A and B;
- git blame lists John, Terry, and Merry as authors of various lines in A;
- git blame lists Jane and Mike as authors of various lines in B;
- the command takes as input files A and B and returns Jane, John, Terry, Merry, and Mike.
So my idea is this:
- I finish my work on a branch;
- execute the command, which take as input all the files, that were modified on this branch compared to master and returns a list of all the authors of lines in these files.
The idea is to know who to ping of a review.