Re: git merge questions
From: Junio C Hamano <hidden>
Date: 2016-06-15 22:42:15
Junio C Hamano [off-list ref] writes:
What puzzles me is that I think it is supposed to have done all
the above for you. Namely:
$ ls -l arch/ppc64/Kconfig <1>
$ git ls-files -s arch/ppc64/Kconfig <2>
$ ls -l arch/powerpc/Kconfig arch/powerpc/Kconfig~* <3>
$ git ls-files -s arch/powerpc/Kconfig <4>
<1> should not remain --- recursive merge could have notied that
the file was moved.
<2> ditto.
<3> arch/powerpc/Kconfig should be there with possibly merge
conflict markers.
<4> stage1 with merge base version (possibly renamed), stage2
with test2 version, stage3 with your test version (definitely
renamed).
I know what happened. That Kconfig file was modified between
v2.6.14 and v2.6.15-rc4 beyond recognition, and the rename
detection did not think it was renamed.
The merge has this message:
CONFLICT (delete/modify): arch/ppc64/Kconfig deleted in HEAD and
modified in e14ee1ed34e25df6ea93b0bfb1bc4138cd26bea2. Version
e14ee1ed34e25df6ea93b0bfb1bc4138cd26bea2 of arch/ppc64/Kconfig
left in tree.
and then, the digging I suggested yields these:
$ ls -l arch/{ppc64,powerpc}/Kconfig
-rw-rw-r-- 1 junio src 24279 Dec 16 12:55 arch/powerpc/Kconfig
-rw-rw-r-- 1 junio src 11027 Dec 16 12:58 arch/ppc64/Kconfig
$ git ls-files -s arch/ppc64/Kconfig arch/powerpc/Kconfig
100644 bb2efdd566a9d590d64184b10b097e4b7ed17e95 0 arch/powerpc/Kconfig
100644 c658650af429672267409508b02b38754c11a40f 1 arch/ppc64/Kconfig
100644 8abf1118ebbd59954d098d87679114ffda0e75cb 3 arch/ppc64/Kconfig
$ ls arch/{powerpc,ppc64}/Kconfig~*
ls: arch/powerpc/Kconfig~*: No such file or directory
ls: arch/ppc64/Kconfig~*: No such file or directory
$ git diff --theirs arch/ppc64/Kconfig
* Unmerged path arch/ppc64/Kconfigdiff --git a/arch/ppc64/Kconfig b/arch/ppc64/Kconfig
The merge algorithm thought your branch (that is, test2 which is v2.6.15-rc4) removed the old ppc64/Kconfig path, but the other branch (test1 which has diff between v2.6.14 and v2.6.14.4) made updates to that file. For the other path, it simply thought your branch added a new file arch/powerpc/Kconfig while the other branch did not do anything to that path between v2.6.14 and v2.6.14.4, so it merged it already. The result you want in this case is to merge changes between c65865 (stage1 of old path) and 8abf11 (stage3 of old path) into bb2efd (the latest contents of the new path) and register it as the result of merge for arch/powerpc/Kconfig, and remove arch/ppc64/Kconfig. So the sequence would be: $ orig=$(git unpack-file c65865) $ from_test=$(git unpack-file 8abf11) $ merge $from_test $orig arch/powerpc/Kconfig merge: warning: conflicts during merge After resolving the conflict in $from_test file, and other conflicts: $ ed $from_test $ cat $from_tset >arch/ppc64/Kconfig $ rm arch/powerpc/Kconfig $ rm $orig $from_test $ git update-index --add --remove arch/ppc64/Kconfig arch/powerpc/Kconfig # also mark paths you hand-resolved such as Makefile, drivers/pcmcia/i82365.c # etc. with "git update-index" here. $ git commit would commit the result of the merge.