merge-conflict-surgeon
Installation
SKILL.md
Merge Conflict Surgeon
Resolve Git merge conflicts systematically and safely.
When to Use
git mergeorgit rebasefails with conflicts- You see conflict markers (
<<<<<<<,=======,>>>>>>>) in files git statusshows "both modified" files- Merging feature branches into main/develop
- Rebasing a branch onto updated main
Workflow
Step 1: Assess the Damage
# See all conflicted files
git status
Related skills