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?
|
|
|
|||
|
|
|
|
The simplest way to do this is with the
|
||
|
|
|
git format-patch --full-index --binary --stdout range... | git am -3 |
||
|
|
|
|
|
||
|
|
