I was working with a repo where both origin/master and master were in the same commit. I created several branches one on top of the other. Something like
master--> branchDothis---> branchDothat--->branchDothistoo
some other member of the team advanced the master branch in the repo so after git fetch origin master
I had master and origin/master in different commits.
So I was at branch branchDothistoo
and I did git rebase origin/master
now I have
master---> origin/master-----> branchDothistoo
so the other two branches are not rebased. (but their commits are there) Is there any way to make them be in the line of commits from origin/master to branchDothistoo?