As you can see below, I have nested branches: step-1 is based on step-0, step-2 based on step-1 and so on.
I made a new commit on step-0 named "Updated instruction" (orange highlighted) and now I would like this commit to be applied on every child branches. => Place "Updated instruction" commit between "Update step 0" and "step 1"
Actual
What I would like
I thought to checkout rebase push, one branch by one but I'm not sure it will works and it's a pain.
First,
git checkout -b step-1 origin/step-1
:After that,
git checkout -b step-2 origin/step-2
:Repeat until all branches have been linearized:
Lastly,
git checkout master
:When you're done:
Of course that involves a lot of typing, but you can easily automate that in any scripting language. Arguably, you could save the time of writing a script for a one-off job and just get down doing your operations manually. :)