How to `git cherry-pick` a series?

177 views Asked by At

I want to cherry-pick a series of commits. This is because neither (1): --ff-only merge nor (2): rebasing off each other nor (3): rebasing both off a shared branch and retrying (1) work in my particular case because my branches are so widely diverged and different. The commits that I want to cherry-pick, however, are on a rarely touched part of the code-base so there is no merge collision risk here. How can I save time by not having to cherry-pick a whole bunch of commits one-by-one?

0

There are 0 answers