Rick Moynihan <rick@xxxxxxxxxxxxxxxx> writes: > Hi, > > I have a master branch, a dev branch and a number of feature branches > from dev. And I was wondering if there was an easy way to rebase dev > and all of it's sub-branches onto master. > > I know I can run this as a series of commands, and use --onto to do > this, but was wondering if there was an easier way. As running: > > git rebase master > > when on the dev branch only rebases dev and not it's dependent branches. Rebasing has no relation to dependent branches. It creates a new branch from the branch point. After it finishes, it just reseats HEAD of the branch to the new one. There is no operation that would work implicitly on originally dependent branches. -- David Kastrup -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html