Suppose I have two branches, A
and B
. Do the following properties hold?
A
into B
conflicts if and
Merge conflicts happen when two people change the same lines in the same file, or if one person decided to delete it while the other person decided to modify it.
So basically,
If there are conflicts when you try to merge B to A, there will be conflicts when you try to merge A to B.
The result of merging A into B and B into A has to be the same(if there are no conflicts).
The question is purely logical. So if anyone thinks my logical answer is wrong or needs improvement, feel free to correct me or edit this.