Process Flow - Cherry-picking multiple commits
Start on target branch
Identify commits to cherry-pick
Run git cherry-pick <commit1> <commit2> ...
Git applies commits one by one
If conflict occurs?
Yes→Resolve conflict, git cherry-pick --continue
No
All commits applied
End with updated branch
The flow starts on the target branch, identifies commits to pick, applies them one by one, handles conflicts if any, and finishes with the updated branch.