Rebasing a branch including all its children

git branch --format="%(refname:short)" --contains C | \
xargs -n 1 \
git rebase --committer-date-is-author-date --onto F C^

Leave a Comment