Sergey Organov <sorganov@xxxxxxxxx> writes: > The last attempt to fix '-m' option for "git log" to imply '-p', to > make it consistent with similar options (-c/--cc), was called by the > request on the mailing list, here: In retrospect, this old attempt may probably shouldn't have been done, as there wasn't really a compelling need to change the behaviour of "-m". The "combined diff" options were "if specified, give output" from day one, unlike "-m" which was "modify the behaviour of '-p' if given" for a long time. Changing any established behaviour risks breaking the exising users and the upside must outweigh the risk. There wasn't overwhelming upside back then to risk, and of course it backfired, ... > However, the suggested (and accepted at first) patch series: > > https://lore.kernel.org/git/20210520214703.27323-11-sorganov@xxxxxxxxx/#t > > appeared to have two problems: > > * --diff-merges options are incomplete and have no way to provide > exact existing '-m' semantics. > > * implying '-p' by '-m' by default broke some legacy uses of > "git log --firt-parent -m". ... like so. Without learning from the experience, we may repeat doing the same thing over and over and expecting different outcome, but it would not give us a very good end-user experience if it breaks them every time we try doing that. > Due to this, the last patch of those patch series has been later > reverted: > > https://lore.kernel.org/git/YQyUM2uZdFBX8G0r@xxxxxxxxxx/ > > effectively leaving the issue unresolved. Fairly accurate description. These patches do look like a good approach to solve the first point among the "two problems" in the previous round. Thanks for working on it. IIRC, the previous round (why is this round marked as v1, by the way?) was reviewed by some folks, so lets wait to hear from them how this round does better. Unfortunately, I do not think of any "solution" that would avoid breaking folks, if its end goal is to flip the default, either by hardcoding or with a configuration variable. IOW, the other one among the "two problems" in the previous round sounds unsolvable. We should question if it was really an "issue" worth "resolving", though.