worktree-config

Solid

Configure worktree-plus via git config — set baseBranch, branchPrefix, dirBase, or reset. Use when the user asks to configure worktree-plus, view or change worktree settings, or reset the plugin config.

AI & Automation 47 stars 4 forks Updated 4 days ago MIT

Install

View on GitHub

Quality Score: 87/100

Stars 20%
56
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# worktree-plus Configuration Manage worktree-plus settings. All settings live in git config under the `worktreeplus.*` namespace (plugin-custom) plus one `worktree.guessRemote` (git-native). No env vars. ## Settings | Key | Default | Scope guidance | |---|---|---| | `worktreeplus.baseBranch` | `HEAD` | Per-repo typical (different repos have different default branches) | | `worktreeplus.branchPrefix` | `worktree-` | Global typical (personal naming convention); per-repo for team rules | | `worktreeplus.dirBase` | `.claude/worktrees` | Per-repo typical | | `worktree.guessRemote` | `true` (plugin override; git default is `false`) | Global typical | ## View current settings Always start by showing what's active. Run: ```bash git config --get-regexp '^worktreeplus\.|^worktree\.guessRemote' ``` If nothing prints, the user is on defaults. State that explicitly — don't leave them guessing. For layered view (local vs global vs system): ```bash git config --local --get-regexp worktreeplus git config --global --get-regexp worktreeplus ``` ## Change a setting Ask scope before writing. "Just this repo" (`--local`, default) vs "all repos for me" (`--global`). ```bash git config [--local|--global] worktreeplus.baseBranch develop git config [--local|--global] worktreeplus.branchPrefix "feat-" git config [--local|--global] worktreeplus.dirBase ".worktrees" git config [--local|--global] worktree.guessRemote false ``` Writes take effect on the next `EnterWorktree` / `claude -w`. E...

Details

Author
LeeJuOh
Repository
LeeJuOh/claude-code-zero
Created
4 months ago
Last Updated
4 days ago
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category