I'm learning the use of version control (with Tortoise HG) so this question might be very basic, but I can't figure out how to solve it.
Suppose Branch A has a text file with the following:
A
B
C
D
E
F
Branch B has the same text file with:
A
B
3
4
E
F
When merging these two files with TortoiseHG, the merges are resolved with KDiff. Kdiff allows us to Select Lines from only one of the two. I want the Merged Code to contain lines from both like:
A
B
C
D
3
4
E
F
The order is not important. How do I solve the merge conflict in KDiff3 to get what I want?
This isn't an academic discussion. It is a simplified version of what is happening with code for a small Android application, where the XML files for Strings is edited in both Branches.