git cherry-pick multiple commits
git
Solution
git cherry-pick $from_sha..$to_sha
Problem
Possible Duplicate: How to cherry pick a range of commits and merge into another branch I want to cherry-pick 19 commits from one branch and apply them to another branch. All of the commits are sequential (commit 1, commit 2 ... commit 19), and the last commit is not the most recent commit (i.e. there are other commits that come after it whose changes I don't want to apply). How can I apply my changes to a branch without typing `git cherry-pick` for each commit?