git-conflict
Installation
SKILL.md
Git Conflict
Git 작업 중 발생한 충돌을 해결합니다.
충돌 유형 감지
git status
| 메시지 | 유형 | 해결 명령 |
|---|---|---|
| "rebase in progress" | rebase | git rebase --continue |
| "merge in progress" | merge | git merge --continue |
| "cherry-pick in progress" | cherry-pick | git cherry-pick --continue |
| "Unmerged paths" (stash 후) | stash | git stash drop (해결 후) |