I have a Git repository as follows:
A-B-F (master)
|\
C \ (feature-1)
D (feature-2)
\
E (feature-3)
Is there any way to rebase automatically all the feature branches (both children and grandchild) to F as follows?
A-B-F (master)
|\
C'\ (feature-1)
D' (feature-2)
\
E'(feature-3)
I have checked the replies of Rebasing a branch including all its children and How to rebase a series of branches?, but neither they are covering this particular case, nor a definitive answer is given.