From: Ben Knoble <ben.knoble@gmail.com>
To: Elijah Newren <newren@gmail.com>
Cc: Guo Tingsheng <CoriCraft16@outlook.com>, git@vger.kernel.org
Subject: Re: [BUG] git merge reports conflict when two branches add independent methods at the same location
Date: Sat, 13 Sep 2025 15:24:36 -0400 [thread overview]
Message-ID: <1020FC45-71F8-44AD-AF5A-BBC98AFC6C84@gmail.com> (raw)
In-Reply-To: <CABPp-BGawdV9n9BtrwVXO1Vc2pBcuq1UtQA-1XEyHD4zB1vVCg@mail.gmail.com>
> Le 12 sept. 2025 à 18:57, Elijah Newren <newren@gmail.com> a écrit :
>
> On Fri, Sep 12, 2025 at 6:38 AM Guo Tingsheng <CoriCraft16@outlook.com> wrote:
>>
>> Hello Git developers,
>>
>> I would like to report a potential issue in Git's merge behavior, where semantically independent changes at the same position are reported as a conflict, even though they could be merged automatically.
>>
>> Environment:
>> - git version: 2.43.0
>> - OS: Ubuntu 24.04 LTS
>>
>> Steps to reproduce:
>> 1. Start with a file containing only:
>>
>> public class Calculator {
>> }
>>
>> 2. On branch A, add a new method `add`:
>>
>> @@ -1,1 +1,3 @@
>> public class Calculator {
>> + public static double add(double a, double b) {
>> + return a + b;
>> + }
>>
>> 3. On branch B, add a new method `subtract`:
>>
>> @@ -1,1 +1,3 @@
>> public class Calculator {
>> + public static double subtract(double a, double b) {
>> + return a - b;
>> + }
>>
>> 4. Merge branch A and branch B.
>>
>> Expected result:
>> - The merge should succeed automatically, producing a file that contains both methods (order does not matter).
>> For example:
>>
>> public class Calculator {
>> public static double add(double a, double b) {
>> return a + b;
>> }
>> public static double subtract(double a, double b) {
>> return a - b;
>> }
>> }
>>
>> Actual result:
>> - Git reports a conflict and aborts the merge, requiring manual conflict resolution.
>>
>> Additional information:
>> - Although the two changes occur at the same location in the file, they are independent additions with no semantic overlap.
>> - It would be desirable for Git's merge algorithm to automatically combine such changes, as the final merged state is deterministic and conflict-free.
>> - This limitation may impact developer productivity in real-world projects where multiple contributors extend the same class or configuration file independently.
>
> Thanks for the report, but how is Git supposed to know that they are
> independent changes with no semantic overlap? Git doesn't understand
> the semantics of the files it tracks. It has no idea whether the
> things being added are functions, or statements/expressions within a
> function, or college essays, or hand-written recipes, or data dumps,
> or anything else. It would need to know those semantics, which would
> probably require something on the level of use of AI to determine that
> the changes are independent non-competing additions with no semantic
> overlap and that you want to keep both.
Sorry, can’t resist: we’ve been writing semantic analysis code for decades. It wouldn’t take AI to get this right.
What’s hard about the situation is that it doesn’t generalize easily: a semantic analyzer that can resolve conflicts for one file, project, language, etc., is not necessarily of any help to its brethren.
Still, if you write a lot of Java or similar code and have this problem frequently, building a merge strategy option or mergetool you can use to resolve this easily seems worthwhile. (Not something mainline Git needs, of course, for all the reasons pointed out here.)
prev parent reply other threads:[~2025-09-13 19:24 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-09-12 13:37 [BUG] git merge reports conflict when two branches add independent methods at the same location Guo Tingsheng
2025-09-12 22:57 ` Elijah Newren
2025-09-13 19:24 ` Ben Knoble [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1020FC45-71F8-44AD-AF5A-BBC98AFC6C84@gmail.com \
--to=ben.knoble@gmail.com \
--cc=CoriCraft16@outlook.com \
--cc=git@vger.kernel.org \
--cc=newren@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.