@jx0/wtm
v1.1.0
Published
Git worktree management CLI tool
Downloads
21
Readme
Worktree Manager (wtm)
🌳 A fast, modern CLI tool for managing Git worktrees in bare repositories
Worktree Manager simplifies Git worktree operations, making it easy to work with multiple branches simultaneously in bare repositories. Perfect for CI/CD environments, shared development servers, or anyone who wants to streamline their Git workflow.
✨ Features
- Lightning fast - Built with Bun for maximum performance
- Easy setup - Clone any repo into a wtm-managed bare structure with one command
- Bare repository focused - Designed specifically for bare Git repositories
- Smart branch management - Automatic fetching and branch creation
- Automatic cleanup - Detect and remove merged worktrees safely
- Hook system - Extensible post-creation hooks for automation
- Clear output - Beautiful, informative command output
- Safe operations - Comprehensive validation and error handling
📦 Installation
Prerequisites
- Bun runtime (v1.0+)
- Git installed and configured
Install from npm
# Install globally with your preferred package manager
bun install -g @jx0/wtm
# or
pnpm add -g @jx0/wtm
# or
npm install -g @jx0/wtm
# or
yarn global add @jx0/wtm
# Verify installation
wtm helpDevelopment Setup
For contributors who want to work on the source code:
# Clone the repository
git clone https://github.com/your-username/worktree-manager.git
cd worktree-manager
# Install dependencies
bun install
# Link for local development
bun link
# For development with auto-reload
bun run dev🚀 Quick Start
# Clone a repository into a wtm-managed bare structure
wtm init [email protected]:user/myrepo.git
# This creates:
# myrepo/
# ├── .git/ <- bare Git internals
# ├── post_create <- hook template
# └── main/ <- initial worktree (auto-created)
# Start working in the initial worktree
cd myrepo/main
# Create a new feature worktree
wtm create feature-auth --from main
# Work on your feature in the new shell...
# (edit files, make commits, etc.)
# Exit the shell when done
exit
# Back in the bare repository, list all worktrees
wtm list
# Clean up merged worktrees
wtm cleanup📖 Command Reference
wtm init <url> [path]
Clones a repository into a wtm-managed bare repository structure.
# Clone using repo name as directory
wtm init [email protected]:user/myrepo.git
# Clone with custom directory name
wtm init [email protected]:org/platform.git myprojectWhat it does:
- Extracts repository name from URL (or uses provided path)
- Creates directory with
.git/subdirectory for bare Git data - Clones the repository as a bare clone
- Configures fetch refspec for all branches
- Creates a template
post_createhook - Detects the default branch (from origin/HEAD, or main/master)
- Creates an initial worktree for the default branch
Final structure:
myrepo/
├── .git/ <- bare Git internals
├── post_create <- template hook (executable)
└── main/ <- initial worktree for default branchSupported URL formats:
[email protected]:user/repo.git(SSH)https://github.com/user/repo.git(HTTPS)ssh://[email protected]/org/repo.git(SSH with protocol)
wtm create <name> --from <base_branch>
Creates a new worktree with a new branch based on the specified base branch, then spawns a new shell in that worktree.
# Create worktree from main branch
wtm create feature-auth --from main
# Create hotfix from master
wtm create hotfix-123 --from master
# Create feature branch from another branch
wtm create review-pr --from feature-xWhat it does:
- Validates you're in a bare repository
- Fetches the latest changes from the base branch
- Creates a new branch named
<name> - Creates a worktree directory at
./<name> - Executes
post_createhook if present - Spawns a new shell session in the worktree directory
Important: This command starts a new shell in the worktree. When you're done working, use exit to return to your original shell in the bare repository.
wtm checkout <name>
Creates a worktree from an existing remote branch if it doesn't already exist locally.
# Create worktree from existing remote branch
wtm checkout existing-remote-branchBehavior:
- If worktree already exists: displays a success message (but does NOT change your shell's directory)
- If worktree doesn't exist but remote branch exists: creates worktree from the remote branch
- If neither exists: shows available worktrees and creation instructions
Important Note: Due to how shells work, this command cannot change your current shell's directory. To work in a worktree:
- Use
wtm createwhich spawns a new shell in the worktree, OR - Manually
cdinto the worktree directory after creation
This command is primarily useful for creating worktrees from existing remote branches without specifying a base branch.
wtm list
Displays all worktrees in a formatted table.
wtm listOutput:
Worktrees:
────────────────────────────────────────────────────────────────────────────────
feature-auth [feature-auth] a1b2c3d4e
main-work [main] f5g6h7i8j
(bare) (bare) k9l0m1n2owtm delete <name> [--force]
Removes a worktree and its associated files.
# Safe deletion (with confirmation if needed)
wtm delete feature-auth
# Force deletion (skips safety checks)
wtm delete old-feature --forceSafety features:
- Cannot delete bare repository
- Validates worktree exists before deletion
- Force flag available for stuck worktrees
wtm cleanup [options]
Interactively find and delete worktrees whose branches have been merged upstream.
# Interactive mode - select which merged worktrees to delete
wtm cleanup
# Specify base branch for merge detection
wtm cleanup --base main
# Preview what would be deleted without actually deleting
wtm cleanup --dry-run
# Delete all merged worktrees without prompting
wtm cleanup --yesOptions:
| Flag | Description |
|------|-------------|
| --base <branch> | Base branch for merge detection (auto-detected from origin/HEAD by default) |
| --dry-run | Show what would be deleted without deleting |
| --yes | Delete all merged worktrees without interactive prompts |
A worktree is considered safe to delete when ALL of these are true:
- Merged upstream - Branch commit is an ancestor of the base branch, OR the remote branch has been deleted (typically after a merge request is merged)
- No uncommitted changes - Working tree has no unstaged, staged, or untracked files
- No unpushed commits - No local commits that aren't reachable from the base branch
Protected branches (never suggested for cleanup):
main,master,next,prerelease
Example workflow:
$ wtm cleanup
Using base branch: main
Fetching latest from origin/main...
Scanning worktrees for cleanup candidates...
Found 2 worktree(s) safe to clean up:
- feature-auth [feature-auth]
- bugfix-123 [bugfix-123]
? Select worktrees to delete:
[x] feature-auth [feature-auth]
[ ] bugfix-123 [bugfix-123]
? Delete 1 worktree(s)? Yes
Deleted worktree 'feature-auth' at /path/to/feature-auth
Pruned stale worktree references.
Cleanup complete. Deleted 1 worktree(s).wtm help
Shows comprehensive help information including examples and features.
🪝 Hook System
Worktree Manager supports executable hooks that run automatically during worktree lifecycle events. Hooks are placed in the bare repository root and must be executable.
Available Hooks
post_create
Runs immediately after a worktree is created, with the working directory set to the new worktree.
Environment Variables:
$WORKTREE_DIR- Absolute path to the new worktree$WORKTREE_NAME- Name of the worktree$BASE_BRANCH- Branch the worktree was created from$BARE_REPO_PATH- Path to the bare repository
Example post_create hook:
#!/bin/bash
# File: post_create (in bare repo root)
echo "🪝 Setting up new worktree: $WORKTREE_NAME"
# Install dependencies if package.json exists
if [ -f "package.json" ]; then
echo "📦 Installing dependencies..."
pnpm install --silent
fi
# Copy environment files from bare repo
if [ -f "$BARE_REPO_PATH/.env.example" ]; then
echo "📄 Copying .env.example to .env"
cp "$BARE_REPO_PATH/.env.example" ".env"
fi
# Copy configuration files
if [ -f "$BARE_REPO_PATH/.vscode/settings.json" ]; then
mkdir -p .vscode
cp "$BARE_REPO_PATH/.vscode/settings.json" ".vscode/"
fi
echo "✅ Worktree setup complete!"Setup:
# Create the hook file in your bare repository
vim post_create
# Make it executable
chmod +x post_create
# Test by creating a new worktree
wtm create test-feature --from main🏗️ Architecture
worktree-manager/
├── src/
│ ├── cli.ts # Command parsing and routing
│ ├── init.ts # Repository initialization
│ ├── worktree.ts # Core worktree operations
│ ├── cleanup.ts # Cleanup detection and UI
│ └── hooks.ts # Hook execution system
├── index.ts # Main entry point
├── package.json # Project configuration
└── README.md # DocumentationKey Components:
- InitManager: Clones repos into wtm-managed bare structure
- WorktreeManager: Core class handling Git operations
- CleanupManager: Detects merged worktrees and handles cleanup flow
- HookManager: Executes lifecycle hooks with proper environment
- CLI Parser: Robust argument parsing and command routing
🔧 Configuration
Worktree Manager works out of the box with standard bare repositories. No configuration files needed.
Repository Requirements:
# Must be a bare repository
git config core.bare true
# Should have remote configured
git remote -v
# origin [email protected]:user/repo.git (fetch)
# origin [email protected]:user/repo.git (push)🎯 Use Cases
Development Server Workflows
Perfect for shared development servers where multiple developers work on different features:
# Developer 1
wtm create user-authentication --from main
# Developer 2
wtm create payment-integration --from main
# Code review
wtm create review-pr-123 --from feature-branchCI/CD Environments
For automated build systems, you can use git worktree commands directly and use wtm for cleanup:
# Build script
git worktree add -b build-$BUILD_ID build-$BUILD_ID origin/$BRANCH_NAME
cd build-$BUILD_ID
# ... run build process ...
cd ..
wtm delete build-$BUILD_ID --forceNote: wtm create spawns an interactive shell, so it's not suitable for automated scripts. Use git's native worktree add command for CI/CD, and wtm delete for cleanup.
Feature Development
Streamline your feature development workflow:
# Start new feature (spawns new shell in worktree)
wtm create feature-dashboard --from main
# Work on feature in the new shell...
# (commits, testing, etc.)
# Exit when done
exit
# Back in bare repo, work on another feature if needed
wtm create hotfix-urgent --from main
# Work on hotfix...
exit
# Clean up when done
wtm delete feature-dashboard
wtm delete hotfix-urgentPeriodic Cleanup
Keep your bare repository tidy by periodically cleaning up merged worktrees:
# See what can be cleaned up
wtm cleanup --dry-run
# Interactively select and delete merged worktrees
wtm cleanup
# Or automatically clean up all merged worktrees (useful in scripts)
wtm cleanup --yesThis is especially useful when working with merge request workflows - after your MRs are merged and the remote branches are deleted, wtm cleanup will detect these and offer to remove the local worktrees.
🤝 Contributing
We welcome contributions! Please see our Contributing Guidelines for details.
Development
# Clone and setup
git clone https://github.com/your-username/worktree-manager.git
cd worktree-manager
bun install
# Run in development mode
bun run dev
# Build
bun run build
# Run tests (when available)
bun testProject Structure
- Keep core logic in
src/worktree.ts - Add new commands in
src/cli.ts - Hook system extensions go in
src/hooks.ts - Follow existing TypeScript patterns
📝 License
This project is licensed under the MIT License - see the LICENSE file for details.
🔗 Links
Made with ❤️ and Bun
Worktree Manager - Because managing Git worktrees shouldn't be a tree of problems 🌳
