Hotfix branch has 4 sequential commits. You need all of them on `release-1.x`. One at a time is tedious.
Use `A..B` (exclusive) or `A^..B` (inclusive) range syntax with cherry-pick.
Medium · 2 steps · +550 XP
This scenario walks through 2 steps, in order:
Try the terminal first — you learn more by doing. When you want to check yourself, here is the command for each step.
git cherry-pick ch00002^..ch00005git log --oneline`git cherry-pick A^..B` picks A through B inclusive.