Re: git-log on a file, and merges

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Fri, Aug 2, 2019 at 4:22 PM Derrick Stolee <stolee@xxxxxxxxx> wrote:
>
> On 8/2/2019 5:38 AM, Piotr Krukowiecki wrote:
> > Hi,
> >
> > I have merged a branch into master.
> >
> > When on master I do "git log -- some/file", it does not show commits
> > from merged branch (which I know they changed the file).
> > I have to add "--full-history" to see the commits.
> > When I run "git log" (without "-- some/file") I can see the commits
> > without using "--full-history".
> >
> > This seems not logical, and contrary to user expectations. Harmful even ;)
> >
> > Am I missing something?
>
> Hi Piotr,
>
> You are falling victim to an issue related to file history simplification [1]
> and a (probably) bad merge. You can read more about how this can happen at [2].
>
> When git log reaches a merge commit and one of the parents matches that path
> exactly, only that parent is walked. The other is ignored. In some sense, the
> other commit did not contribute changes to that file (because we only took
> changes from the other parent). This makes the history look good and enables
> some performance boosts.
>
> Basically, someone must have gotten a merge conflict and used "-S ours" to
> wipe away the changes from the other branch on that file. You can find that
> merge by running
>
>         git log --full-history --simplify-merges -- some/file
>
> You will see the merge commit that un-did the change somewhere above the
> commit you are expecting to see in the history.
>
> Thanks,
> -Stolee
>
>
> [1] https://git-scm.com/docs/git-log#_history_simplification
> [2] https://docs.microsoft.com/en-us/azure/devops/repos/git/git-log-history-simplification?view=azure-devops

Thanks for explaining.

There was no "bad" merge. The file was modified only on the branch
(and previously in common history).

There were two commits to this file on the branch, older one did some
changes, later one reverted the changes (among other things).

So my understanding is that git looked at the merge commit, saw that
this file was the same as it was before the merge, and assumed that
there were no commits which modified this file in the branches being
merged, so it didn't bother looking at the branch history.

At this moment I'm not sure myself if I consider this a bug or not.
Maybe if I look at merge commits as a special entity - not a diverging
history, but rather a single commit which introduces some changes -
then maybe I could accept it.
But on the other hand I feel this generates wrong results. Falsifies
history. If I was asking about "diff", I would understand if it showed
nothing, as there was no difference. But I'm asking for "log".
Especially that I remembered/checked that there were some changes to
this file, and wanted to see them.


Anyway, is there a way to disable this behavior (enable
"--full-history"?) by default?
I suspect that this behavior will bite me in future, and I guess the
"performance gains" are not big enough to validate it...



-- 
Piotr Krukowiecki



[Index of Archives]     [Linux Kernel Development]     [Gcc Help]     [IETF Annouce]     [DCCP]     [Netdev]     [Networking]     [Security]     [V4L]     [Bugtraq]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux SCSI]     [Fedora Users]

  Powered by Linux