From: Junio C Hamano <gitster@pobox.com> To: Elijah Newren <newren@gmail.com> Cc: git@vger.kernel.org Subject: Re: [RFC/WIP PATCH 0/3] Modifications to handling of non-textual file merge conflicts Date: Thu, 09 Aug 2018 10:52:34 -0700 [thread overview] Message-ID: <xmqq600jctr1.fsf@gitster-ct.c.googlers.com> (raw) In-Reply-To: <20180806224745.8681-1-newren@gmail.com> (Elijah Newren's message of "Mon, 6 Aug 2018 15:47:42 -0700") Elijah Newren <newren@gmail.com> writes: > 1) Representative example: A modify/delete conflict; the path in question > in the working tree would have conflict information at the top of the file > followed by the normal file contents; thus it could be of the form: > > <<<<<<<< HEAD > Conflict hint: This block of text was not part of the original > branch; it serves instead to hint about non-textual conflicts: > MODIFY/DELETE: path foo modified in HEAD and deleted in BRANCH > ======== > Conflict hint: This block of text was not part of the original > branch; it serves instead to hint about non-textual conflicts: > MODIFY/DELETE: path foo modified in HEAD and deleted in BRANCH > >>>>>>>> BRANCH > Lorem ipsum dolor sit amet, consectetuer sadipscing elitr, > sed diam nonumy eirmod tempor invidunt ut labore et dolore > magna aliquyam erat, sed diam voluptua. At vero eos et > accusam et justo duo dolores et ea rebum. Stet clita kasd > gubergren, no sea takimata sanctus est Lorem ipsum dolor > sit amet. > > Alternative ideas for handling the explanatory text here are welcome. In a modify/delete conflict, we currently do not leave any in-file clue, so smudging the modified side like this might be a change that helps those who "grep e '<<<<<<<'" to find the set of paths that need to be examined. I personally do not feel it would be all that useful, as "ls-files -u" is how I'd learn about these paths. What I would want to see when faced to a modify/delete conflict is how the modification side changed the contents, as the change, or its moral equivalent, would need to be ported to other locations in the context of the deleting side. But I am not sure if it makes sense to attempt to somehow include "diff HEAD...MERGE_HEAD" (or the other way around) in the file to show the contents change on the modification side. > 2) Representative example: A binary edit/edit conflict. In this case, > it would be inappropriate to put the conflict markers inside the > binary file. Instead, we create another file (e.g. path~CONFLICTS) > and put conflict markers in it: > > <<<<<<<< HEAD > Conflict hint: This block of text was not part of the original > branch; it serves instead to hint about non-textual conflicts: > BINARY conflict: path foo modified in both branches > ======== > Conflict hint: This block of text was not part of the original > branch; it serves instead to hint about non-textual conflicts: > BINARY conflict: path foo modified in both branches > >>>>>>>> BRANCH > > This file would also be added to the index at stage 1 (so that 'git merge > --abort' would clean this file out instead of leaving it around untracked, > and also because 'git status' would report "deleted in both" which seems > reasonable). > > This type of example could apply for each of the following types of > conflicts: > * binary edit/edit > * any of the conflicts from type 1 when binary files are involved > * symlink edit/edit (or add/add) > * symlink/submodule > * symlink/directory > * directory/submodule > * submodule/submodule > > It could also apply to the following new corner case conflict types from > directory rename detection: > * N-way colliding paths (N>=2) due to directory renames > * directory rename split; half renamed to one directory and half to another Hmph, I am starting to wonder if it may be easier to access if instead you did not touch any working tree file to do any of the above, and instead write a single file in $GIT_DIR/ to explain what kind of conflicts these paths are involved in. That would probably give a better and easier-to-read summary than "ls-files -u" output. Or do we have _enough_ information in the "ls-files -u" already to infer "Ah, we are in symlink edit/edit conflict.", etc.? If so, perhaps "git status" can be extended to show what kind of conflict these paths are in by reading the higher-stage index entries (and lack of stages thereof, when dealing with a conflict with deletion involved)?
next prev parent reply other threads:[~2018-08-09 17:52 UTC|newest] Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top 2018-08-06 22:44 Two RFC/WIP series for facilitating merge conflict resolution Elijah Newren 2018-08-06 22:45 ` [RFC/WIP PATCH 0/1] Simplify handling of directory/file conflicts Elijah Newren 2018-08-06 22:45 ` [RFC/WIP PATCH 1/1] merge-recursive: make file/directory conflicts easier to resolve Elijah Newren 2018-08-09 17:36 ` Junio C Hamano 2018-08-09 19:26 ` Elijah Newren 2018-08-09 20:54 ` Junio C Hamano 2018-08-09 21:27 ` Elijah Newren 2018-08-06 22:47 ` [RFC/WIP PATCH 0/3] Modifications to handling of non-textual file merge conflicts Elijah Newren 2018-08-06 22:47 ` [RFC/WIP PATCH 1/3] rerere: avoid buffer overrun Elijah Newren 2018-08-06 22:47 ` [RFC/WIP PATCH 2/3] merge-recursive: fix handling of submodules in modify/delete conflicts Elijah Newren 2018-08-06 22:47 ` [RFC/WIP PATCH 3/3] merge-recursive: provide more conflict hints for non-textual conflicts Elijah Newren 2018-08-09 17:52 ` Junio C Hamano [this message] 2018-08-09 18:51 ` [RFC/WIP PATCH 0/3] Modifications to handling of non-textual file merge conflicts Elijah Newren
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=xmqq600jctr1.fsf@gitster-ct.c.googlers.com \ --to=gitster@pobox.com \ --cc=git@vger.kernel.org \ --cc=newren@gmail.com \ --subject='Re: [RFC/WIP PATCH 0/3] Modifications to handling of non-textual file merge conflicts' \ /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
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).