I have the three way merge window open in Mercurial:
local
base
other
- I was on branch A:
hg update A
. - I want to merge with branch B :
hg merge B
I want to know what is local
, base
, and other
.
I read this How does the 3 way merge in Mercurial/Meld work? but could not get it.
Now I want to know which file from local
, base
, other
I need to save? Do I need to make all files the same? Will this change files in other branches or it will only save in my current branch A only, and other branches won't be touched?