选项
首页首页 Skill Git 和版本控制 using-git-worktrees

在开始需要与当前工作区隔离的功能开发工作时,或在执行实现计划之前使用——通过智能目录选择和安全验证,创建隔离的 Git 工作树

...展开全部
61
更新时间 2026-06-29

关于using-git-worktrees

“using-git-worktrees ”技能旨在简化 Git 工作树的管理流程,使开发人员能够创建共享单一仓库的隔离工作区。这在开始需要与当前工作区分离的新功能开发,或执行实现计划时尤为有用。 通过采用系统化的目录选择和安全验证机制,该技能确保开发人员能够同时处理多个分支,而无需担心发生冲突或意外提交到主仓库。

常见问题

如何使用此技能创建新的工作树?

请按照目录选择流程确定合适的位置,必要时验证 .gitignore 文件,然后使用指定的分支名称创建工作树。

此技能是否与所有 Git 仓库兼容?

是的,只要该 Git 仓库遵循标准规范,并包含项目设置所需的相应文件即可。

如果设置工作树后测试失败,会发生什么?

如果测试失败,该技能会报告失败情况,并询问是否继续执行后续操作或排查问题。

我可以将此技能用于全局目录的设置吗?

可以,该技能支持在全局目录中创建工作树,且无需验证 .gitignore 文件。

如果两个本地目录都存在,我该怎么办?

如果同时存在这两个目录,该技能会优先使用 '.worktrees' 目录,而非 'worktrees' 目录。

在 GitHub 上查看

Using Git Worktrees

Overview

Git worktrees create isolated workspaces sharing the same repository, allowing work on multiple branches simultaneously without switching.

Core principle: Systematic directory selection + safety verification = reliable isolation.

Announce at start: "I'm using the using-git-worktrees skill to set up an isolated workspace."

Directory Selection Process

Follow this priority order:

1. Check Existing Directories

# Check in priority orderls -d .worktrees 2>/dev/null     # Preferred (hidden)ls -d worktrees 2>/dev/null      # Alternative

If found: Use that directory. If both exist, .worktrees wins.

2. Check CLAUDE.md

grep -i "worktree.*director" CLAUDE.md 2>/dev/null

If preference specified: Use it without asking.

3. Ask User

If no directory exists and no CLAUDE.md preference:

No worktree directory found. Where should I create worktrees?1. .worktrees/ (project-local, hidden)2. ~/.config/superpowers/worktrees/<project-name>/ (global location)Which would you prefer?

Safety Verification

For Project-Local Directories (.worktrees or worktrees)

MUST verify directory is ignored before creating worktree:

# Check if directory is ignored (respects local, global, and system gitignore)git check-ignore -q .worktrees 2>/dev/null || git check-ignore -q worktrees 2>/dev/null

If NOT ignored:

Per Jesse's rule "Fix broken things immediately":

  1. Add appropriate line to .gitignore
  2. Commit the change
  3. Proceed with worktree creation

Why critical: Prevents accidentally committing worktree contents to repository.

For Global Directory (~/.config/superpowers/worktrees)

No .gitignore verification needed - outside project entirely.

Creation Steps

1. Detect Project Name

project=$(basename "$(git rev-parse --show-toplevel)")

2. Create Worktree

# Determine full pathcase $LOCATION in  .worktrees|worktrees)    path="$LOCATION/$BRANCH_NAME"    ;;  ~/.config/superpowers/worktrees/*)    path="~/.config/superpowers/worktrees/$project/$BRANCH_NAME"    ;;esac# Create worktree with new branchgit worktree add "$path" -b "$BRANCH_NAME"cd "$path"

3. Run Project Setup

Auto-detect and run appropriate setup:

# Node.jsif [ -f package.json ]; then npm install; fi# Rustif [ -f Cargo.toml ]; then cargo build; fi# Pythonif [ -f requirements.txt ]; then pip install -r requirements.txt; fiif [ -f pyproject.toml ]; then poetry install; fi# Goif [ -f go.mod ]; then go mod download; fi

4. Verify Clean Baseline

Run tests to ensure worktree starts clean:

# Examples - use project-appropriate commandnpm testcargo testpytestgo test ./...

If tests fail: Report failures, ask whether to proceed or investigate.

If tests pass: Report ready.

5. Report Location

Worktree ready at <full-path>Tests passing (<N> tests, 0 failures)Ready to implement <feature-name>

Quick Reference

SituationAction
.worktrees/ existsUse it (verify ignored)
worktrees/ existsUse it (verify ignored)
Both existUse .worktrees/
Neither existsCheck CLAUDE.md → Ask user
Directory not ignoredAdd to .gitignore + commit
Tests fail during baselineReport failures + ask
No package.json/Cargo.tomlSkip dependency install

Common Mistakes

Skipping ignore verification

  • Problem: Worktree contents get tracked, pollute git status
  • Fix: Always use git check-ignore before creating project-local worktree

Assuming directory location

  • Problem: Creates inconsistency, violates project conventions
  • Fix: Follow priority: existing > CLAUDE.md > ask

Proceeding with failing tests

  • Problem: Can't distinguish new bugs from pre-existing issues
  • Fix: Report failures, get explicit permission to proceed

Hardcoding setup commands

  • Problem: Breaks on projects using different tools
  • Fix: Auto-detect from project files (package.json, etc.)

Example Workflow

You: I'm using the using-git-worktrees skill to set up an isolated workspace.[Check .worktrees/ - exists][Verify ignored - git check-ignore confirms .worktrees/ is ignored][Create worktree: git worktree add .worktrees/auth -b feature/auth][Run npm install][Run npm test - 47 passing]Worktree ready at /Users/jesse/myproject/.worktrees/authTests passing (47 tests, 0 failures)Ready to implement auth feature

Red Flags

Never:

  • Create worktree without verifying it's ignored (project-local)
  • Skip baseline test verification
  • Proceed with failing tests without asking
  • Assume directory location when ambiguous
  • Skip CLAUDE.md check

Always:

  • Follow directory priority: existing > CLAUDE.md > ask
  • Verify directory is ignored for project-local
  • Auto-detect and run project setup
  • Verify clean test baseline

Integration

Called by:

  • brainstorming (Phase 4) - REQUIRED when design is approved and implementation follows
  • Any skill needing isolated workspace

Pairs with:

  • finishing-a-development-branch - REQUIRED for cleanup after work complete
  • executing-plans or subagent-driven-development - Work happens in this worktree

所有文件

1 个文件

安装 using-git-worktrees

下载技能文件并将其解压到 .claude/skills/ 目录中。

下载ZIP

克隆仓库并复制技能文件到您的项目中。

git clone https://github.com/davila7/claude-code-templates/blob/main/cli-tool/components/skills/development/using-git-worktrees/SKILL.md # Copy SKILL.md to your .claude/skills/ directory

复制 复制
快速设置: 将技能文件夹复制到 .claude/skills/ 目录下,Claude 会自动检测并使用该技能

相关技能

github-project-management
更新时间 2026-06-29
readme-blueprint-generator
更新时间 2026-07-05
finishing-a-development-branch
更新时间 2026-06-29
changelog-generator
更新时间 2026-06-29
OR