Cherry Pick Planner
v1.0.3Generate cherry-pick execution plans for backport workflows.
Generates cherry-pick execution plans for backport workflows — list commits by hash and target branch, and get the ordered cherry-pick commands and conflict-risk notes.
How to use- →Enter commit hashes and the target branch to backport to.
- →The plan lists the cherry-pick commands in the correct order.
- →Review conflict-risk notes for commits that touch high-churn files.
One SHA per line — commits are applied in order (top to bottom)
Cherry-pick plan
# Checkout target branch git checkout release/1.2 # Cherry-pick each commit git cherry-pick a1b2c3d git cherry-pick d4e5f6a git cherry-pick 77bc1e2 # Verify and push # git log --oneline -3 # git push origin release/1.2