Git
Cherry Pick
Multiple Commits in Sequence
To cherry-pick all the commits from commit with sha A to commit with sha B (where A is older than B), run:
git cherry-pick A^..B
If you want to ignore A itself, run:
git cherry-pick A..B
Ashould be older than B, orAshould be from another branch.- On Windows, it should be
A^^..Bas the caret needs to be escaped, or it should be"A^..B"~(with double quotes).