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?
| ||||
|
feedback
|
|
The simplest way to do this is with the
| |||
feedback
|
|
Git 1.7.2 introduced the ability to cherrypick a range of commits. From the release note:
| |||||
feedback
|
| |||
feedback
|