Hotfix branch has 4 sequential commits. You need all of them on `release-1.x`. One at a time is tedious.
`A..B` (exclusive) and `A^..B` (inclusive) are range shorthands; naming the commits explicitly does the same job.
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 hotfix~3 hotfixgit log --oneline`git cherry-pick A^..B` picks A through B inclusive — and `git cherry-pick A B C` picks a hand-picked list. Both replay commits one at a time, in the order given.