merge-resolution | Skill Performance & Reviews | TopRankSkills

TopRank Skills

Home / Skills / tools / merge-resolution

merge-resolution

maintained by VectorInstitute

star 0 account_tree 0 verified_user MIT License
bolt View GitHub

name: merge-resolution description: Merge conflict resolution conventions. Use when resolving git merge conflicts, especially in dependency files and lock files.

Merge Resolution

Version Conflicts

Prefer newer versions:

<<<<<<< HEAD
"package": "^2.0.0"
=======
"package": "^1.9.0"
>>>>>>>
# Resolve to: "^2.0.0"

Lock Files

Never manually resolve. Regenerate:

# Python
rm uv.lock && uv lock

# Node.js
rm package-lock.json && npm install

Pre-commit Config

For .pre-commit-config.yaml, prefer newer hook versions from the update branch.

Validation

git diff --check           # No whitespace issues
grep -r "<<<<<<" .         # No remaining markers

chat Comments (0)

chat_bubble_outline

No comments yet. Be the first to share your thoughts!

Skill Details

GitHub Stars 0
GitHub Forks 0
Created Jan 2026
Last Updated il y a 5 mois
tools tools git workflows

Related Skills

pr

pr

MoonshotAI
star 6.1k
chevron_right
feature-dev
chevron_right
drafting-pr
chevron_right
creating-pr
chevron_right
checking-docs
chevron_right

Build your own?

Join 12,000+ developers contributing to the Claude ecosystem.