I can't seem to figure this Git scenario out after reading the man page and searching some of the questions here, so I hope some of you can help me out.
Here's the situation. I've got two branches, let's call them master
and experimental
, with the commit graph looking like this:
A---B---C---D master
\
E---F---G---H experimental
and I want to end up here:
A---B---C---D---F---H master
\
E---F---G---H experimental
I could achieve this by successively cherry-picking all relevant commits from experimental
, but I'd like to use git rebase -i
to get a list of all commits and select the relevant ones. Is this possible?