resolve-git-conflicts
Installation
SKILL.md
Resolve Git Conflicts
Overview
Resolve Git conflicts end-to-end in the CLI. Analyze base/ours/theirs, decide which changes to keep or combine, verify the code works, then stop for human review before any commit or continue.
Quick Start
git status -sbgit diff --name-only --diff-filter=U- For each file, inspect base/ours/theirs:
git show :1:PATH,git show :2:PATH,git show :3:PATH - Edit files to a clean, marker-free result and run
git add PATH - Run the repo build/tests if available
- Stop for review. Do not run
git commit,git merge --continue,git rebase --continue, orgit cherry-pick --continue