"Max Coplan via GitGitGadget" <gitgitgadget@xxxxxxxxx> writes: > This change adds a new option to `git log` that allows users to search > for commits that match either the author or the commit message. This is > useful for finding commits that were either authored or co-authored by a > specific person. I have this feeling that the "solution" presented is not quite addressing the use case in a more useful and direct way than it could be. When I designed how the --author/--committer restriction and --grep in the body of the message interact, I made a concious decision that "among those commits that were authored by person X, find the ones that mention Y" is far more useful than "done by X, or done by anybody that mention Y", especially when Y is just a text search in the free form. There was nothing that limits the mention of Y to those specifically involved in the commit---the mention could just have been part of text, like "earlier Max Coplan sent a patch, but this commit is not related to it". But these days, we have a more established "convention" that lists people at the end in the form of "trailers", and that changes the picture quite a lot from how the world order was back then. In other words, if the true objective is to find commits that involved person X, Y or Z (which is very common and would be a lot more useful than finding those that involve all of them), shouldn't we be limiting the --grep side even further so that a random mention of person Y is excluded and hit is counted only when person Y is mentioned on a trailer (while loosening the --author side so that it is OR'ed instead of AND'ed)? I am imagining a pair of new options to name people (all OR'ed) and to name places the names of these people should appear (again, all OR'ed). I am not good at naming, so the option names in the example is not more than illustration of an idea and not my recommendation, but a command: git log --by="Max Coplan" --by="Junio C Hamano" \ --by-where=author,Signed-off-by,Co-authored-by would find a commit that has one (or more) of the given names in one (or more) of the places that are specified, where the places can be either "author", "committer" to specify these headers in the commit object, or random other string to specify trailer lines with given keys. Hmm?