On Tue, Dec 8, 2020 at 2:30 PM Sergey Organov <sorganov@xxxxxxxxx> wrote: > > Elijah Newren <newren@xxxxxxxxx> writes: > > > Hi Sergey, > > Hi Elijah, > > > > > On Tue, Dec 8, 2020 at 12:07 PM Sergey Organov <sorganov@xxxxxxxxx> wrote: > >> > >> Sergey Organov <sorganov@xxxxxxxxx> writes: > >> > >> > >> [...] > >> > >> > The series also cleanup logic of handling of diff merges options and > >> > fix an issue found in the original implementation where logically > >> > mutually exclusive options -m/-c/--cc failed to actually override each > >> > other. > >> > >> Working further on this, I've noticed very irregular interactions > >> between -m/-c/--cc and --oneline: > >> > >> 1. --oneline disables -m output for 'git log', and leaves -m output enabled > >> for 'git show': > >> > >> $ /usr/bin/git show -n1 -m --oneline 2e673356aef | wc -l > >> 80 > >> $ /usr/bin/git log -n1 -m --oneline 2e673356aef | wc -l > >> 1 > > > > If you leave off --oneline, you'll note that git show produces a diff > > and git log does not (regardless of whether 2e673356aef is a merge > > commit or a regular commit). So, I don't think this is related to > > --oneline. > > Yeah, looks exactly like this, thanks for correcting! > > > > >> 2. For 'git log', --oneline disables -m output, and leaves -c/--cc output > >> enabled: > >> > >> $ /usr/bin/git log -n1 -m --oneline 2e673356aef | wc -l > >> 1 > >> $ /usr/bin/git log -n1 -c --oneline 2e673356aef | wc -l > >> 16 > >> $ /usr/bin/git log -n1 --cc --oneline 2e673356aef | wc -l > >> 16 > >> > >> The question is: what's the right interaction between --oneline and > >> -m/-c/--cc? > > > > I believe the right question is: Should -m be a no-op unless -p is > > also specified? > > Right. > > > In the past, --cc and -c were no-ops except when -p > > was also specified. It was somewhat unfriendly and surprising, and > > thus was changed so that --cc and -c implied -p (and thus would cause > > output for non-merge commits to be shown differently, namely shown > > with a diff, in addition to affecting the type of diff shown for merge > > commits). > > Well, so one surprise has been replaced with another, supposedly more > friendly, right? > > I mean, obviously, with --cc I don't ask for diffs for non-merge > commits, so it is still a surprise they are thrown at me. Actually, that wasn't a side-effect but part of the intended change -- see https://lore.kernel.org/git/1440110591-12941-1-git-send-email-gitster@xxxxxxxxx/. > > I think -m was overlooked at the time. > > Looks like it was, but maybe there was rather an actual reason for not > implying -p by -m? Maybe Junio will tell? > > > > >> I tend to think they should be independent, so that --oneline doesn't > >> affect diff output, and then the only offender is -m. > > > > I agree that they should be independent, but I believe they are > > already independent unless you have more evidence of weirdness > > somewhere. The differences you are seeing are due to -m, -c, and --cc > > being handled differently, and I think we should probably just give -m > > the same treatment that we give to -c and --cc (namely, make all three > > imply -p). > > I think that either all diff-merge options should imply -p, or none, > from the POV of least surprise. > > However, it'd give us yet another challenge: for some time already, > --first-parent implies -m, that once it starts to imply -p, will result in > > git log --first-parent > > suddenly producing diff output for everything. That is definitely a pickle. > One way out I see is to specify that implied -m/-c/--cc don't imply > -p, only explicit do. > > Entirely different approach is to get rid of -m/-c/--cc implying -p, and > just produce diff output for merges independently on -p being provided > or not. This will give us additional functionality (ability to get diff > for merges, but not for regulars), and will get rid of all the related > surprises. > > Thoughts? I was happy when I found out that --cc had changed to imply -p; I guess I felt the same as Junio did with his rationale in the link I posted above. I've made --remerge-diff behave like --cc (i.e. it implies -p), and I like it there too. I use it both to turn on diffs for merges, and to turn on diffs for regular commits without having to specify the extra -p flag. I guess I'm not sure why one would ever want to see diffs for merges and not for normal commits. Even in the unusual case someone did, couldn't they just pass --merges (to strip out the normal commits entirely)? I may not have the best vantage point on this, though, because I personally don't see enough utility in diffing a merge to just one of its parents that it'd merit having an option to git-log, and yet we clearly have two such options already (-m and --first-parent when combined with -p). But, there is at least one more way to get out of this pickle besides the two options you listed above: we could make --first-parent be just about commit limiting and not imply anything about diff behavior. Honestly, I find it a little surprising that despite the fact that log -p shows nothing for merge commits, that when I add --first-parent to see a subset of commits I suddenly get weird, huge diffs shown for the merges (yeah, yeah, I learned recently that it's documented behavior, so it's not surprising anymore, just weird). So, this wouldn't just get rid of this new nasty pickle, but would remove another negative surprise too. If we're going to make a behavioral change, I'd rather we fixed this side rather than the (IMO) nicely working --cc/-c side. Hope that helps, Elijah