Resolves git rebase and merge conflicts systematically using block-by-block verification and subagent delegation.
The Rebase Conflict Resolver is a specialized Claude Code skill designed to handle complex Git rebase and merge conflicts with surgical precision. Instead of risky bulk operations, it processes conflicts one block at a time, performing mandatory verification using grep to ensure no markers are left behind. It optimizes token usage by delegating individual file resolutions to subagents and utilizes a high-performance 'whole-file' resolution strategy for files that need to be completely reset to the HEAD version. By integrating with git rerere, it also helps the system learn from previous resolutions, making it an essential tool for maintaining clean commit histories in large or active repositories.
主要功能
01Block-by-block conflict resolution to prevent accidental data loss during complex merges.
02Optimized 'whole-file' resolution using git show for maximum speed and zero token cost.
03Automated verification using grep to ensure all conflict markers are removed before staging.
04Native support for git rerere to leverage and record previous conflict resolution patterns.
051 GitHub stars
06Subagent delegation for parallel, token-efficient processing of multiple conflicted files.
使用场景
01Automating the 'continue' phase of a difficult git rebase involving dozens of files.
02Systematic cleanup of conflict markers while strictly adhering to a 'keep HEAD' versioning policy.
03Resolving complex merge conflicts after a long-lived feature branch is integrated.