Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问clear审计通过

fix-git修复 git

Agent Skill

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

总安装

879

周安装

37

GitHub Stars

93

下载量

308
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/letta-ai/skills --skill fix-git

简介

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

  • 适合在版本控制相关任务中快速获取线索或解决方案。
  • 通过 npx skills add 命令从 letta-ai/skills 仓库安装。
  • 需确认是否操作本地 Git 仓库或访问远程服务。
  • 建议检查网络连接和认证凭据有效性。fix-git 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Git Recovery and Fix Skill

This skill provides systematic approaches for diagnosing and recovering from common Git problems, particularly lost commits and detached HEAD situations.

When to Use This Skill

  • Recovering commits that appear to be "lost" or missing
  • Fixing detached HEAD states where work was committed but not on a branch
  • Recovering from accidental git reset or git checkout operations
  • Restoring work after switching branches without committing
  • Investigating what happened to missing changes in a repository

Diagnostic Approach

Initial Assessment

To diagnose a Git recovery situation, run these commands in parallel to understand the repository state:

  1. git status - Check current working directory state and branch
  2. git reflog - View history of HEAD movements (critical for finding lost commits)
  3. git branch -a - List all branches including remotes
  4. git log --oneline -10 - View recent commit history on current branch

Understanding Reflog Output

The reflog is the most important tool for recovery. It shows every position HEAD has been in, including:

  • Commits made in detached HEAD state
  • Positions before resets
  • Branch switches and checkouts

Reflog entries follow the format: <commit-hash> HEAD@{n}: <action>: <message>

Look for entries that indicate:

  • commit: - A commit was made (potential recovery target)
  • checkout: - A branch switch occurred (may indicate where commits were left behind)
  • reset: - A reset was performed (commits after this point may need recovery)

Recovery Strategies

Strategy 1: Merge Lost Commit

When a commit exists in reflog but not on any branch:

# First, ensure on the target branch
git checkout <target-branch>

# Merge the lost commit
git merge <commit-hash>

This preserves commit history and relationships.

Strategy 2: Cherry-pick Lost Commit

Alternative when merge is not desired or when only specific commits are needed:

git checkout <target-branch>
git cherry-pick <commit-hash>

Use cherry-pick when:

  • Only specific commits from a series are needed
  • The commit history should appear linear
  • Merge would bring in unwanted changes

Strategy 3: Create Recovery Branch

Before performing recovery operations, create a safety branch:

# Create a branch at the lost commit for safety
git branch recovery-<descriptive-name> <commit-hash>

# Then proceed with merge or cherry-pick
git checkout <target-branch>
git merge recovery-<descriptive-name>

This provides a rollback point if recovery goes wrong.

Strategy 4: Reset to Lost Commit

When the current branch should be moved to a lost commit (use with caution):

# Soft reset preserves changes in staging
git reset --soft <commit-hash>

# Mixed reset (default) preserves changes in working directory
git reset <commit-hash>

# Hard reset discards all changes (dangerous)
git reset --hard <commit-hash>

Conflict Resolution During Recovery

Handling Merge Conflicts

When merging a recovered commit causes conflicts:

  1. Identify conflicting files: git status shows files with conflicts
  2. Read the conflicting file to understand both versions
  3. Look for context clues: Commit messages often indicate intent (e.g., "Move to Stanford" suggests which version is correct)
  4. Edit to resolve: Remove conflict markers and keep correct content
  5. Verify resolution: Re-read the file to confirm all conflict markers are removed
  6. Complete the merge: git add <resolved-files> git commit

Conflict Marker Format

<<<<<<< HEAD
Current branch content
=======
Incoming commit content
>>>>>>> <commit-hash>

Remove all three marker lines and keep the desired content.

Verification Steps

After any recovery operation, verify success:

  1. Check all modified files: When a recovered commit modified multiple files, examine each one git show <commit-hash> --stat # See which files were modified
  2. Verify file contents: Read files that were part of the recovery to confirm correct content
  3. Check for remaining conflict markers: Search for <<<<<<<, =======, or >>>>>>> in modified files
  4. Review commit history: git log --oneline -5
  5. Run tests if available: Execute any test suite to verify functionality

Common Pitfalls

Pitfall 1: Incomplete Conflict Resolution

Problem: Conflict markers left in files after supposedly resolving conflicts.

Prevention: Always re-read files after editing to confirm all markers are removed.

Pitfall 2: Ignoring Auto-merged Files

Problem: Focusing only on files with conflicts while ignoring auto-merged files that may have issues.

Prevention: Check git show <commit-hash> --stat to see all files modified by the recovered commit, and verify each one.

Pitfall 3: Not Creating a Safety Branch

Problem: Performing recovery operations without a rollback point.

Prevention: Before merging or resetting, note the current HEAD position or create a branch:

git branch backup-before-recovery

Pitfall 4: Garbage Collection Risk

Problem: Commits in detached HEAD state can eventually be garbage collected if not referenced by a branch or tag.

Prevention: Create a branch at important commits promptly:

git branch save-work <commit-hash>

Pitfall 5: Assuming Single Lost Commit

Problem: Only recovering the most recent lost commit when multiple commits may be orphaned.

Prevention: Examine the full reflog to identify all commits that may need recovery:

git reflog | head -20

Decision Framework

When recovering lost work, choose the approach based on these factors:

SituationRecommended Approach
Single commit, want full historygit merge
Single commit, want linear historygit cherry-pick
Multiple related commitsgit merge the most recent (includes ancestors)
Multiple unrelated commitsgit cherry-pick each one
Uncertain about recoveryCreate branch first, then merge
Need to completely move branchgit reset (with caution)

Post-Recovery Best Practices

After successful recovery:

  1. Document what happened: Understanding the cause prevents recurrence
  2. Check for similar issues: Other work may also be orphaned
  3. Consider workflow improvements: Detached HEAD often results from git checkout <commit> without creating a branch

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

26.21%
按下载量换算81

Gemini CLI

25.19%
按下载量换算78

Codex

16.15%
按下载量换算50

Antigravity

12.04%
按下载量换算37

OpenCode

7.22%
按下载量换算22

windsurf

3.21%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills