Let’s say the history is A-B-C-D-E-F-G, and you’d like to cherry-pick C-D-E-F.
git cherry-pick B..F
or
git cherry-pick C^..F
or
git cherry-pick C D E F
Let’s say the history is A-B-C-D-E-F-G, and you’d like to cherry-pick C-D-E-F.
git cherry-pick B..F
or
git cherry-pick C^..F
or
git cherry-pick C D E F