# HG changeset patch # User Pierre-Yves David # Date 1607883490 -3600 # Node ID 1d6aac94e6d5fd4b126221e479dbf6eb6bb17bcb # Parent 929054848d6c407419941d8331d6cc757955f895 copies: explain the "arbitrary" copy source pick in case of conflict They are a logic and it is easy to explain, so lets explain it. Differential Revision: https://phab.mercurial-scm.org/D9586 diff -r 929054848d6c -r 1d6aac94e6d5 tests/test-copies-chain-merge.t --- a/tests/test-copies-chain-merge.t Sun Dec 13 20:16:34 2020 +0100 +++ b/tests/test-copies-chain-merge.t Sun Dec 13 19:18:10 2020 +0100 @@ -1427,11 +1427,6 @@ This case is similar to BF/FB, but an actual merge happens, so both side of the history are relevant. -Note: -| In this case, the merge get conflicting information since on one side we have -| "a -> c -> d". and one the other one we have "h -> i -> d". -| -| The current code arbitrarily pick one side $ hg log -G --rev '::(desc("mGFm")+desc("mFGm"))' o 29 mGFm-0 simple merge - the other way @@ -1450,6 +1445,33 @@ | o 0 i-0 initial commit: a b h + +Note: +| In this case, the merge get conflicting information since on one side we have +| "a -> c -> d". and one the other one we have "h -> i -> d". +| +| The current code arbitrarily pick one side depending the ordering of the merged hash: + +In this case, the file hash from "f-2" is lower, so it will be `p1` of the resulting filenode its copy tracing information will win (and trace back to "h"): + +Details on this hash ordering pick: + + $ hg manifest --debug 'desc("g-1")' | egrep 'd$' + f2b277c39e0d2bbac99d8aae075c0d8b5304d266 644 d (no-changeset !) + 4ff57b4e8dceedb487e70e6965ea188a7c042cca 644 d (changeset !) + $ hg status --copies --rev 'desc("i-0")' --rev 'desc("g-1")' d + A d + a (no-changeset no-compatibility !) + + $ hg manifest --debug 'desc("f-2")' | egrep 'd$' + 4a067cf8965d1bfff130057ade26b44f580231be 644 d (no-changeset !) + fe6f8b4f507fe3eb524c527192a84920a4288dac 644 d (changeset !) + $ hg status --copies --rev 'desc("i-0")' --rev 'desc("f-2")' d + A d + h (no-changeset no-compatibility !) + +Copy tracing data on the resulting merge: + $ hg status --copies --rev 'desc("i-0")' --rev 'desc("mFGm-0")' A d h