Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计提醒

git-conflictsgit 冲突

Agent Skill

git-conflicts 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

519

周安装

21

GitHub Stars

28

下载量

163
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:git-conflicts(git 冲突)
来源仓库:https://github.com/laurigates/claude-plugins
仓库路径:skills/git-conflicts
安装命令:
npx skills add https://github.com/laurigates/claude-plugins --skill git-conflicts
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/laurigates/claude-plugins --skill git-conflicts

简介

git-conflicts 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 安装前需确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

/git:conflicts

Resolve merge conflicts using modern git features.

When to Use This Skill

Use this skill when...Use git-ops agent instead when...
Merge or rebase produced conflictsComplex multi-branch cherry-pick across many commits
PR shows "can't merge" / "fix conflicts"Conflicts require deep business logic understanding
Config files (JSON, YAML, lockfiles) divergedInteractive rebase with squash/fixup needed
Need to accept one side wholesale (--ours/--theirs)Architectural redesign spanning many files

Context

  • Current branch:!git branch --show-current
  • Git status:!git status --porcelain=v2 --branch
  • Merge state:!find.git -maxdepth 1 -name 'MERGE_HEAD' -o -name 'REBASE_HEAD' -o -name 'rebase-merge' -o -name 'rebase-apply'
  • Conflicted files:!git diff --name-only --diff-filter=U
  • Conflict style:!git config merge.conflictStyle
  • Rerere enabled:!git config rerere.enabled
  • Git version:!git version

Parameters

Parse these from $ARGUMENTS:

  • $1: File path (resolve single file) OR PR number (fetch and merge base branch)
  • --ours: Accept current branch version for all conflicts
  • --theirs: Accept incoming branch version for all conflicts
  • --push: Push after resolution is committed

Execution

Execute this conflict resolution workflow:

Step 1: Assess the situation

  1. Check context for existing merge/rebase state (MERGE_HEAD, REBASE_HEAD, rebase-merge, rebase-apply)
  2. If PR number provided and no active merge state:

- Get PR details: gh pr view <number> --json headRefName,baseRefName,mergeable - Fetch base: git fetch origin <base-branch> - Start merge: git merge origin/<base-branch> - If merge succeeds cleanly, report "No conflicts" and exit

  1. List conflicted files: git diff --name-only --diff-filter=U
  2. If no conflicted files found, report current status and exit

Step 2: Configure zdiff3 (if not set)

Check the conflict style from context. If merge.conflictStyle is not zdiff3:

  1. Set for this repo: git config merge.conflictStyle zdiff3
  2. Re-checkout conflicted files with zdiff3 markers: git checkout --conflict=zdiff3 -- <file> for each conflicted file
  3. Enable rerere if not already: git config rerere.enabled true
  4. Enable rerere autoupdate: git config rerere.autoupdate true (auto-stages files resolved by rerere)

This gives three-way conflict markers with the common ancestor, compacted by removing shared lines at conflict boundaries. Much easier to resolve than the default two-way markers.

Step 3: Resolve conflicts

If --ours flag: Accept current branch for all conflicted files:

git restore --ours -- <file>    # for each file
git add <file>

If --theirs flag: Accept incoming branch for all conflicted files:

git restore --theirs -- <file>  # for each file
git add <file>

Otherwise, resolve each file intelligently:

For each file from git diff --name-only --diff-filter=U:

  1. Read the file — with zdiff3, conflict markers look like: <<<<<<< HEAD (current branch changes) ||||||| (common ancestor) (what the code looked like before both changes) ======= (incoming changes) >>>>>>> branch-name
  2. The ||||||| section (common ancestor) shows what both sides started from — use it to understand intent
  3. Apply resolution strategy by file type:
File TypeStrategy
package.json, plugin.jsonMerge objects/arrays, take higher versions
YAML configMerge keys from both sides
CHANGELOG.mdInclude entries from both sides in chronological order
README.md, docsInclude content from both sides
Source codeIntegrate both changes preserving logic of each
Lock files (bun.lock, package-lock.json)Delete and regenerate after resolving other files
.release-please-manifest.jsonTake higher version numbers
  1. Edit the file to remove ALL conflict markers (<<<<<<<, |||||||, =======, >>>>>>>) and combine changes
  2. Stage: git add <file>

Important ours/theirs note for rebases: During git rebase, the meaning of ours/theirs is swapped — --ours refers to the branch being rebased onto (usually main), --theirs refers to your feature branch commits.

Step 4: Verify and complete

  1. Check no conflict markers remain: search all resolved files for <<<<<<<
  2. Check git diff --name-only --diff-filter=U returns empty (no remaining unmerged paths)
  3. Check if rerere recorded anything: git rerere status
  4. Complete the operation:

- If merging: git commit --no-edit - If rebasing: git rebase --continue

  1. If --push flag: git push origin $(git branch --show-current)

Step 5: Report results

Summarize what was resolved:

  • List each file and how it was resolved (merged both sides, accepted ours/theirs, regenerated)
  • Note if rerere recorded new resolutions for future reuse
  • If PR number was provided, optionally comment: gh pr comment <number> --body "Merge conflicts resolved."

Conflict Resolution Patterns

JSON Files

  • Merge array entries from both sides, deduplicate
  • For version fields, take the higher version
  • For object properties, include properties from both sides
  • Validate JSON after resolution

Markdown Files

  • Include content from both sides
  • Maintain chronological order for changelogs
  • Include table rows from both sides

Source Code

  • Use the common ancestor (zdiff3 ||||||| section) to understand what both sides changed
  • Integrate both modifications preserving the intent of each
  • If same line changed incompatibly, prefer the PR branch change and note in commit message

Squash Merge Pitfall

If the same conflicts keep recurring, the likely cause is squash merges. Squash-merging breaks the common ancestry chain, so stacked or sibling branches lose their merge base. Rerere mitigates this by replaying recorded resolutions, but the root fix is to avoid squash merges on branches with dependents.

When to Abort

Abort with git merge --abort or git rebase --abort if:

  • Conflicts span many files with incompatible architectural changes
  • Resolution requires understanding business requirements you don't have context for
  • Lock files are the only conflicts (delete, regenerate, commit)

Quick Reference

TaskCommand
List conflicted filesgit diff --name-only --diff-filter=U
Re-checkout with zdiff3git checkout --conflict=zdiff3 -- <file>
Accept current branchgit restore --ours -- <file>
Accept incoming branchgit restore --theirs -- <file>
Recreate conflict markersgit checkout -m -- <file>
Check rerere statusgit rerere status
View rerere diffgit rerere diff
Forget bad resolutiongit rerere forget <file>
Abort mergegit merge --abort
Abort rebasegit rebase --abort
Continue rebasegit rebase --continue

Agentic Optimizations

ContextCommand
List conflictsgit diff --name-only --diff-filter=U
Conflict count`git diff --name-only --diff-filter=U \wc -l`
Full conflict diffgit diff --diff-filter=U
PR mergeable stategh pr view N --json mergeable
Check markers remaingrep -rn '<<<<<<<' <files>
Porcelain statusgit status --porcelain=v2
Detect merge/rebase state`test -f.git/MERGE_HEAD && echo merge \\test -d.git/rebase-merge && echo rebase`

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

32.63%
按下载量换算53

Claude

31.48%
按下载量换算51

Cursor

18.75%
按下载量换算31

Gemini CLI

9.69%
按下载量换算16

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/laurigates/claude-plugins --skill git-conflicts 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills