Token导航 LogoToken导航TokenDH.com
运维和基础设施需要联网github未标认证来源可访问clear审计通过

recovering-from-bad-git-state从错误的 git 状态中恢复

Agent Skill

recovering-from-bad-git-state 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

238

周安装

10

GitHub Stars

9

下载量

83
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/delorenj/skills --skill recovering-from-bad-git-state

简介

recovering-from-bad-git-state 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中整理仓库状态和协作事项。

  • 适用于围绕仓库状态、代码变更或协作事项进行信息整理的任务。
  • 可查询仓库状态、Issue 详情、PR 内容和协作历史。
  • 安装命令:npx skills add https://github.com/delorenj/skills --skill recovering-from-bad-git-state。
  • 建议确认权限范围和维护状态,注意是否触发联网或文件操作。

SKILL.md

Git State Recovery Specialist

Use this skill when encountering corrupted git state, orphaned worktrees, or inconsistent branch references that prevent normal git operations.

When to Use

Invoke proactively when you observe:

  • git worktree list showing 00000000 commit hashes
  • git branch --show-current contradicting actual HEAD state
  • Worktree operations failing with "already used by worktree" errors
  • HEAD pointing to non-existent branch refs
  • Branch deletion failing due to phantom worktree claims
  • git status showing "HEAD detached" unexpectedly

Core Diagnostic Sequence

1. State Validation

# Check HEAD integrity
cat .git/HEAD
# Should show: ref: refs/heads/<branch-name>

# Verify worktree consistency
git worktree list
# Look for: invalid commit hashes (00000000), missing paths

# Cross-check branch state
git branch --show-current
git symbolic-ref HEAD
# These should agree

2. Identify Corruption Type

Type A: Corrupted HEAD Reference

  • Symptoms: HEAD points to non-existent branch, operations fail with "unknown revision"
  • Cause: Incomplete checkout or branch deletion while HEAD pointed to it
  • Recovery: Force reset HEAD to known good branch

Type B: Orphaned Worktree Metadata

  • Symptoms: git worktree list shows worktree but directory doesn't exist
  • Cause: Manual directory deletion without git worktree remove
  • Recovery: Prune stale worktree references

Type C: Branch Lock Conflict

  • Symptoms: "branch is already used by worktree" but git worktree list shows different branch
  • Cause: Worktree checked out branch, then had HEAD forcibly changed
  • Recovery: Align HEAD with actual branch or force checkout

Recovery Operations

Fix Corrupted HEAD

# Identify correct branch from remote
git branch -r | grep main  # or master, develop, etc.

# Force reset HEAD (bypasses git safety checks)
echo "ref: refs/heads/main" > .git/HEAD

# Verify fix
git status
git branch --show-current

Prune Orphaned Worktrees

# Standard prune (removes references to deleted directories)
git worktree prune -v

# If prune fails, manual cleanup
rm -rf .git/worktrees/<worktree-name>

# Verify cleanup
git worktree list

Resolve Branch Lock Conflicts

# Option 1: Align HEAD with intended branch
git reset --hard origin/main

# Option 2: Force delete phantom worktree claim
# First ensure you're on a different branch
git checkout main
# Then force delete the locked branch
git branch -D <locked-branch>
git push origin --delete <locked-branch>  # if pushed

Nuclear Option: Rebuild Branch Refs

# When refs are completely corrupted
git fetch --all --prune

# Recreate local branch from remote
git branch -D <branch-name>
git checkout -b <branch-name> origin/<branch-name>

# Verify state
git log --oneline -5

Prevention Patterns

Safe Worktree Operations

# Always use git worktree commands, never manual directory operations
git worktree add <path> <branch>    # Create
git worktree remove <path>          # Delete (not rm -rf)
git worktree prune                  # Clean stale refs

Validate State Before Operations

// Example: iMi worktree manager
fn validate_repo_state(&self, repo: &Repository) -> Result<()> {
    let head = repo.head()?;

    // Ensure HEAD points to valid commit
    if head.target().is_none() {
        return Err(anyhow::anyhow!(
            "Repository HEAD is corrupted. Run git-state-recovery."
        ));
    }

    // Verify worktree list consistency
    let worktrees = repo.worktrees()?;
    for wt in worktrees.iter().flatten() {
        let wt_path = repo.workdir()
            .unwrap()
            .parent()
            .unwrap()
            .join(wt);
        if !wt_path.exists() {
            eprintln!("Warning: Orphaned worktree detected: {}", wt);
        }
    }

    Ok(())
}

Integration with iMi

When building worktree management tools, add state validation hooks:

// Before any worktree operation
pub async fn create_worktree(&self, ...) -> Result<PathBuf> {
    // Validate repository state first
    self.validate_repo_state(&repo)?;

    // Proceed with operation
    self.git.create_worktree(...)?;

    // Verify post-operation state
    self.validate_worktree_created(&worktree_path)?;

    Ok(worktree_path)
}

Common Edge Cases

Case 1: Trunk Directory Checked Out to PR Branch

Symptom: imi pr <num> switches trunk to PR branch instead of creating separate worktree

Root Cause: gh pr checkout checks out in current directory as side effect

Fix: Fetch PR without checkout

# Get PR head ref
PR_REF=$(gh pr view <num> --json headRefName -q .headRefName)

# Fetch without checkout
git fetch origin $PR_REF:pr-<num>

# Create worktree from fetched ref
git worktree add ../pr-<num> pr-<num>

Case 2: Multiple Repos with Same Worktree Name

Symptom: Creating pr-123 in repo B fails because repo A has pr-123

Root Cause: Git worktree names are globally unique per repository

Fix: Use repo-prefixed worktree names

let worktree_name = format!("{}-pr-{}", repo_name, pr_number);

Testing Recovery Procedures

Before deploying worktree automation:

# Create test scenario
git init test-repo && cd test-repo
git commit --allow-empty -m "init"
git worktree add ../test-wt

# Corrupt state
rm -rf ../test-wt
# Don't run git worktree prune yet

# Verify corruption detection
git worktree list  # Should show test-wt but invalid path

# Test recovery
git worktree prune -v
git worktree list  # Should be clean

Escalation Path

If recovery procedures fail:

  1. Backup corrupted repository: tar -czf repo-backup.tar.gz.git/
  2. Clone fresh from remote: git clone <url> repo-fresh
  3. Manually recreate worktrees from backup database/records
  4. Document failure mode for future prevention

Related Skills

  • ecosystem-patterns: Composable git operations section
  • mise-task-managing: Git workflow automation patterns

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

30.8%
按下载量换算26

windsurf

24.62%
按下载量换算20

OpenCode

16.59%
按下载量换算14

Codex

13.37%
按下载量换算11

Antigravity

8.57%
按下载量换算7

Gemini CLI

3.28%
按下载量换算3

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills