I have a history that looks like this
H o updated ctools, ds
G M─┐ merged module file
F │ o find page
E o │ work on download restriction
D o─┘ Report downloading/emailing WIP
C o migration: find and replace URLs throughout notes
B o various local things
A o initial commit
Further behind, A comes off of a remote master. Now the remote has moved on and I'd like to use git rebase to update my history to be on top of the latest remote changes.
All of these commits are on code that is not in the remote master, but git rebase will fail me because it seems to not understand how to process D:G: the side branch that was merged at G. Git rebase attempts to apply them in order, without the merge, i.e. A B C D E F H... but F will not apply on E. I plan on needing to rebase several times to keep my code on top of the latest origin's development, so I want a lasting solution.
How can I tell git that the answer to the conflict is to be found at G? Or how can I do something else such that git rebase will be able to reply commits? I'd happily squash D:G into D' if that made things easier.