We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4d1826d + c566500 commit 0067272Copy full SHA for 0067272
1 file changed
Documentation/merge-strategies.txt
@@ -113,3 +113,11 @@ subtree::
113
match the tree structure of A, instead of reading the trees at
114
the same level. This adjustment is also done to the common
115
ancestor tree.
116
+
117
+With the strategies that use 3-way merge (including the default, 'recursive'),
118
+if a change is made on both branches, but later reverted on one of the
119
+branches, that change will be present in the merged result; some people find
120
+this behavior confusing. It occurs because only the heads and the merge base
121
+are considered when performing a merge, not the individual commits. The merge
122
+algorithm therefore considers the reverted change as no change at all, and
123
+substitutes the changed version instead.
0 commit comments