MCP HubMCP Hub
Retour aux compétences

resolve-git-conflicts

pjt222
Mis à jour 2 days ago
7 vues
17
2
17
Voir sur GitHub
Designaiapidesign

À propos

Cette compétence Claude aide les développeurs à résoudre les conflits de fusion, de rebasage et de cherry-pick Git en identifiant les sources des conflits, en lisant les marqueurs et en choisissant des stratégies de résolution. Elle fournit des méthodes de récupération sûres pour poursuivre ou abandonner les opérations lorsque des conflits surviennent avec des commandes comme merge, pull ou stash pop. Utilisez-la pour gérer systématiquement les opérations Git ayant échoué et pour en récupérer.

Installation rapide

Claude Code

Recommandé
Principal
npx skills add pjt222/agent-almanac -a claude-code
Commande PluginAlternatif
/plugin add https://github.com/pjt222/agent-almanac
Git CloneAlternatif
git clone https://github.com/pjt222/agent-almanac.git ~/.claude/skills/resolve-git-conflicts

Copiez et collez cette commande dans Claude Code pour installer cette compétence

Documentation

Resolve Git Conflicts

Identify, resolve, and recover from merge and rebase conflicts.

When to Use

  • A git merge or git rebase reports conflicts
  • A git cherry-pick cannot apply cleanly
  • A git pull results in conflicting changes
  • A git stash pop conflicts with current working tree

Inputs

  • Required: Repository with active conflicts
  • Optional: Preferred resolution strategy (ours, theirs, manual)
  • Optional: Context about which changes should take priority

Procedure

Step 1: Identify the Conflict Source

Determine what operation caused the conflict:

# Check current status
git status

# Look for indicators:
# "You have unmerged paths" — merge conflict
# "rebase in progress" — rebase conflict
# "cherry-pick in progress" — cherry-pick conflict

The status output tells you which files have conflicts and what operation is in progress.

Got: git status shows files listed under "Unmerged paths" and indicates the active operation.

If fail: If git status shows a clean tree but you expected conflicts, the operation may have already been completed or aborted. Check git log for recent activity.

Step 2: Read Conflict Markers

Open each conflicting file and locate the conflict markers:

<<<<<<< HEAD
// Your current branch's version
const result = calculateWeightedMean(data, weights);
=======
// Incoming branch's version
const result = computeWeightedAverage(data, weights);
>>>>>>> feature/rename-functions
  • <<<<<<< HEAD to =======: Your current branch (or the branch you're rebasing onto)
  • ======= to >>>>>>>: The incoming changes (the branch being merged or the commit being applied)

Got: Each conflicting file contains one or more blocks with <<<<<<<, =======, and >>>>>>> markers.

If fail: If no markers are found but files show as conflicting, the conflict may be a binary file or a deleted-vs-modified conflict. Check git diff --name-only --diff-filter=U for the full list.

Step 3: Choose a Resolution Strategy

Manual merge (most common): Edit the file to combine both changes logically, then remove all conflict markers.

Accept ours (keep current branch's version):

# For a single file
git checkout --ours path/to/file.R
git add path/to/file.R

# For all conflicts
git checkout --ours .
git add -A

Accept theirs (keep incoming branch's version):

# For a single file
git checkout --theirs path/to/file.R
git add path/to/file.R

# For all conflicts
git checkout --theirs .
git add -A

Got: After resolution, the file contains the correct merged content with no remaining conflict markers.

If fail: If you chose the wrong side, re-read the conflicting version from the merge base. During a merge, git checkout -m path/to/file re-creates the conflict markers so you can try again.

Step 4: Mark Files as Resolved

After editing each conflicting file:

# Stage the resolved file
git add path/to/resolved-file.R

# Check remaining conflicts
git status

Repeat for every file listed under "Unmerged paths".

Got: All files move from "Unmerged paths" to "Changes to be committed". No conflict markers remain in any file.

If fail: If git add fails or markers remain, re-open the file and ensure all <<<<<<<, =======, and >>>>>>> lines are removed.

Step 5: Continue the Operation

Once all conflicts are resolved:

For merge:

git commit
# Git auto-populates the merge commit message

For rebase:

git rebase --continue
# May encounter more conflicts on subsequent commits — repeat steps 2-4

For cherry-pick:

git cherry-pick --continue

For stash pop:

# Stash pop conflicts don't need a continue — just commit or reset
git add .
git commit -m "Apply stashed changes with conflict resolution"

Got: The operation completes. git status shows a clean working tree (or moves to the next commit during rebase).

If fail: If the continue command fails, check git status for remaining unresolved files. All conflicts must be resolved before continuing.

Step 6: Abort if Needed

If resolution is too complex or you chose the wrong approach, abort safely:

# Abort merge
git merge --abort

# Abort rebase
git rebase --abort

# Abort cherry-pick
git cherry-pick --abort

Got: Repository returns to the state before the operation started. No data loss.

If fail: If abort fails (rare), check git reflog to find the commit before the operation and git reset --hard <commit> to restore it. Use with caution — this discards uncommitted changes.

Step 7: Verify Resolution

After the operation completes:

# Verify clean working tree
git status

# Check that the merge/rebase result is correct
git log --oneline -5
git diff HEAD~1

# Run tests to confirm nothing is broken
# (language-specific: devtools::test(), npm test, cargo test, etc.)

Got: Clean working tree, correct merge history, tests pass.

If fail: If tests fail after resolution, the merge may have introduced logical errors even though syntax conflicts are resolved. Review the diff carefully and fix.

Validation

  • No conflict markers (<<<<<<<, =======, >>>>>>>) remain in any file
  • git status shows a clean working tree
  • The merge/rebase history is correct in git log
  • Tests pass after conflict resolution
  • No unintended changes were introduced

Pitfalls

  • Blindly accepting one side: --ours or --theirs discards the other side entirely. Only use when you are certain one version is completely correct.
  • Leaving conflict markers in code: Always search the entire file for remaining markers after editing. A partial resolution breaks the code.
  • Amending during rebase: During an interactive rebase, do not --amend unless the rebase step specifically calls for it. Use git rebase --continue instead.
  • Losing work on abort: git rebase --abort and git merge --abort discard all resolution work. Only abort if you want to start over.
  • Not testing after resolution: A syntactically clean merge can still be logically wrong. Always run tests.
  • Force-pushing after rebase: After rebasing a shared branch, coordinate with collaborators before force-pushing, as it rewrites history.

Related Skills

  • commit-changes - committing after conflict resolution
  • manage-git-branches - branch workflows that lead to conflicts
  • configure-git-repository - repository setup and merge strategies

Dépôt GitHub

pjt222/agent-almanac
Chemin: i18n/caveman-lite/skills/resolve-git-conflicts
0
agentsagentskillsai-assisted-developmentclaude-codeskillsteams

Compétences associées

executing-plans

Design

Utilisez la compétence executing-plans lorsque vous disposez d'un plan de mise en œuvre complet à exécuter par lots contrôlés avec des points de contrôle de revue. Elle charge et examine le plan de manière critique, puis exécute les tâches par petits lots (3 tâches par défaut) tout en rapportant la progression entre chaque lot pour une revue par l'architecte. Cela garantit une mise en œuvre systématique avec des points de contrôle de qualité intégrés.

Voir la compétence

requesting-code-review

Design

Cette compétence délègue un sous-agent réviseur de code pour analyser les modifications apportées au code par rapport aux exigences avant de poursuivre. Elle doit être utilisée après avoir terminé des tâches, implémenté des fonctionnalités majeures, ou avant une fusion vers la branche principale. La revue aide à détecter précocement les problèmes en comparant l'implémentation actuelle avec le plan initial.

Voir la compétence

connect-mcp-server

Design

Cette compétence fournit un guide complet permettant aux développeurs de connecter des serveurs MCP à Claude Code via les transports HTTP, stdio ou SSE. Elle couvre l'installation, la configuration, l'authentification et la sécurité pour intégrer des services externes tels que GitHub, Notion et des API personnalisées. Utilisez-la lors de la configuration d'intégrations MCP, de la configuration d'outils externes ou du travail avec le Protocole de Contexte de Modèle de Claude.

Voir la compétence

web-cli-teleport

Design

Cette compétence aide les développeurs à choisir entre les interfaces Web et CLI de Claude Code en fonction de l'analyse des tâches, puis permet une téléportation transparente des sessions entre ces environnements. Elle optimise le flux de travail en gérant l'état et le contexte de la session lors du passage entre le web, la CLI ou le mobile. Utilisez-la pour des projets complexes nécessitant différents outils à diverses étapes.

Voir la compétence