git - cherry-pick a range of commits
To cherry pick a range of commits to another branch, we can use the START^..END commit range syntax, where START is the first commit in the range and END is the last commit:
git cherry-pick START^..END
References
How to cherry-pick a range of commits and merge them into another branch?

close
