Thread (7 messages) flat view 7 messages, 6 authors, 2016-06-15

Re: multiple-commit cherry-pick?

From: Deskin Miller <hidden>
Date: 2016-06-15 22:45:36

On Thu, Nov 06, 2008 at 11:45:27AM +0900, Miles Bader wrote:
Is there any easy way to cherry pick a _range_ of commits from some other
branch to the current branch, instead of just one?

I thought maybe git-rebase could be coerced to do this somehow, but I
couldn't figure a way.
Rebase is exactly what you want.  Given something like this:

o--o--o--A--B--C--o--o--X
    \
     o--o--D

where you want A, B, C to go on top of D:

$ git checkout -b newbranch C
$ git rebase --onto D ^A

newbranch will have <...> --D--A--B--C

Hope that helps,
Deskin Miller
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help