git rebase branch with all subbranches
- by knittl
is it possible to rebase a branch with all it's subbranches in git?
i often use branches as quick/mutable tags to mark certain commits.
* master
*
* featureA-finished
*
* origin/master
now i want to rebase -i master onto origin/master, to change/reword the commit featureA-finished^
after git rebase -i --onto origin/master origin/master master,…