git cherry pick example multiple commits
Example 1: git cherry pick many commits
# A and B are commits
# A is older than B
git cherry-pick A^..B
# to ignore A itself, run:
git cherry-pick A..B
Example 2: git cherry pick multiple commits
git cherry-pick A^..B