Why am I given three choices when merging between my code and someone else's? Shouldn't there just be my code, the other person's code, and the output below? The documentation for KDIFF doesn't help me understand.
|
feedback
|
|
Sounds like you're doing a three-way merge, so A should be the base revision that B and C are based on, B is theirs and C is yours (I believe; B and C might be the opposite, though). | |||||||||||||
feedback
|
|
A is your parent revision having B and C as child...that means B is the changes done to A by user1/repo1 and C is changes done to A by other user(user2/repo2) kdiff gives you the option either to select modification from b or c(or take both) or from parent also 'A' | |||
|
feedback
|
|
A refers to the version your merge target is based on. If you Merge from branch to trunk it will the the previous trunk version. B is what you currently have in your local trunk folder. Including local changes. C is the Version you wanna merge on top of B. | |||
|
feedback
|