So I have a complex local branch structure: my main working local branch, and two other branches off of it. There was a new change in master that I want in my branches. What is the best way to propagate it to all of my branches? Is rebasing possible?
A---E---M master
\
F---G---H local_branch_main
|\
| I---J local_subbranch_1
\K---L local_subbranch_2
Ideally, I'd want to just move all the branches to reference off of the new master commit (there are no conflicts):
A---E---M master
\
F---G---H local_branch_main
|\
| I---J local_subbranch_1
\K---L local_subbranch_2