Andy Parkins wrote: > Hello, > > Is there a way to rebase part of a branch? For example > > H---I---J topicB > / > E---F---G topicA > / > A---B---C---D master > > And I want: > > H---I---J topicB > / > | E---F---G topicA > |/ > A---B---C---D master We have git-rebase [--merge] [--onto <newbase>] <upstream> [<branch>] Try then $ git rebase --onto master topicA topicB (if you checked out topicB, you don't need last topicB in git-rebase). -- Jakub Narebski Warsaw, Poland ShadeHawk on #git - 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