The git merge documentation states for the example:
A---B---C topic
/
D---E---F---G master
Then "git merge topic" will replay the changes made on the topic branch since it diverged from master (i.e., E) until its current commit (C) on top of master, and record the result in a new commit along with the names of the two parent commits and a log message from the user describing the changes.
I'm wondering about the phrase "replay the changes." I could hardly find mention of the word "replay" in other articles about git merging.
I imagine git finding what changed between A and the merge base, applying that change, applying the diff between B and A, applying the diff between C and B, then consolidating that series of changes into a merge commit. Essentially looking at each commit after the merge base and evaluating them individually.
If that's true, what happens in the case of...
A---B---C---I topic
/ \
D---E---F---G---H(merge)---O master
and I want to merge master into topic. Assuming the current branch is topic, "git merge master." My merge base per "git merge-base master topic" is commit C.
If we stick to the story of "replaying" changes, how does the topic branch get the changes to commits F and G? Is it finding the diff between H and C (the merge base)? If so, why replay a series of changes in the first example and instead just find the diff between the branch heads and the merge base?