When merging topic branch "B" in "A" using git merge
, I get some conflicts. I know all the conflicts can be solved using the version in "B".
I am aware of git merge -s ours
. But what I want is something like git merge -s their
.
Why it does not exist? How can I achieve the same result after the conflicting merge with hot git
commands? (git checkout every unmerged file from B)
thanks
UPDATE: however, this solution just discard anything from branch A (the merge commit point to B version of the tree). This is not what I am looking for :(