git cherry-pick <commitA>^..<commitB>

Cherry-pick several commits

Cherry pick all the commits from commit A to commit B (where A is older than B), including both.

If you want to ignore A itself, run:

git cherry-pick A..B

Sign in to enable bookmarking, reminders, progress-tracking and more...