git cherry pick two commits at once code example
Example: 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
# 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