Differences between revisions 2 and 3
Revision 2 as of 2006-05-16 11:35:46
Size: 1122
Comment:
Revision 3 as of 2007-10-10 21:44:38
Size: 1206
Editor: 193
Comment:
Deletions are marked like this. Additions are marked like this.
Line 45: Line 45:
<<<<<<< local &lt;&lt;&lt;&lt;&lt;&lt;&lt; local
Line 51: Line 51:
>>>>>>> other &gt;&gt;&gt;&gt;&gt;&gt;&gt; other
Line 54: Line 54:

[http://floopityjoop.com/cat.html cat]

Conflict

A conflict occurs when two independent ["ChangeSet"]s modify overlapping sections of a file in different ways. During a ["Merge"], ["Mercurial"] may require the assistance of the user through a ["MergeProgram"] which can be used to ["Resolve"] those conflicts.

If the ["MergeProgram"] is not a graphical tool, a common fallback behavior is to use diff3 for highlighting the ["Conflict"] in the file using conflict markers. A text editor can be used to ["Resolve"] the conflicts manually.


For example:

Given the base file:

$ cat base
A
B
C

assuming local is your modified copy of base:

$ cat local
A
B - my local changes
C

and assuming other is another modified copy of base:

$ cat other
A
B - changes made by others
C

then there's obviously a conflicting change on the B line. The "merged" content, as produced by the GNU diff3 program, will look like this:

$ diff3 -m local base other
A
&lt;&lt;&lt;&lt;&lt;&lt;&lt; local
B - my local changes
||||||| base
B
=======
B - changes made by others
&gt;&gt;&gt;&gt;&gt;&gt;&gt; other
C

[http://floopityjoop.com/cat.html cat]

Conflict (last edited 2012-11-11 18:40:24 by abuehl)