vote up 4 vote down star

I have two branches. Commit a is the head of one, while the other has b, c, d, e and f on top of a. I want to move c, d, e and f to first branch without commit b. Using cherry pick it is easy: checkout first branch cherry-pick one by one c to f and rebase second branch onto first. But is there any way to cherry-pick all c-f in one command?

flag

3 Answers

vote up 5 vote down

The simplest way to do this is with the onto option to rebase. Suppose that the branch which current finishes at a is called mybranch and this is the branch that you want to move c-f onto.

# checkout mybranch
git checkout mybranch

# reset it to f (currently includes a)
git reset --hard f

# rebase every commit after b and transplant it onto a
git rebase --onto a b
link|flag
Thank you! Could you also add git checkout secondbranch && git rebase mybranch for full answer – tig Nov 4 at 16:30
vote up 1 vote down

git format-patch --full-index --binary --stdout range... | git am -3

link|flag
vote up 1 vote down
git rev-list --reverse b..f | xargs -n 1 git cherry-pick
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.