up vote 24 down vote favorite
12
share [g+] share [fb]

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?

link|improve this question

72% accept rate
feedback

5 Answers

up vote 19 down vote accepted

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|improve this answer
Thank you! Could you also add git checkout secondbranch && git rebase mybranch for full answer – tig Nov 4 '09 at 16:30
feedback

Git 1.7.2 introduced the ability to cherrypick a range of commits. From the release note:

git cherry-pick" learned to pick a range of commits (e.g. "cherry-pick A..B" and "cherry-pick --stdin"), so did "git revert"; these do not support the nicer sequencing control "rebase [-i]" has, though.

link|improve this answer
6  
In the "cherry-pick A..B" form, A should be older than B. If they're the wrong order the command will silently fail. – damian Jan 11 '11 at 16:16
feedback
git rev-list --reverse b..f | xargs -n 1 git cherry-pick
link|improve this answer
Works perfect if there is no conflicts, otherwise "rebase onto" might be easier as you will not have to figure out where it has stopped and re-applying the rest of the patches. – Ruslan Kabalin Oct 7 '11 at 11:37
feedback
git format-patch --full-index --binary --stdout range... | git am -3
link|improve this answer
feedback

Or the requested one-liner:

git rebase --onto a b f
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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