March 2026: Worktrunk was released at the start of the year, and has quickly become the most popular git worktree manager. It's built with love (there's no slop!). Please let me know any frictions at all; I'm intensely focused on continuing to make Worktrunk excellent, and the biggest help is folks posting problems they perceive.
Worktrunk is a CLI for git worktree management, designed for running AI agents in parallel.
Worktrunk's three core commands make worktrees as easy as branches. Plus, Worktrunk has a bunch of quality-of-life features to simplify working with many parallel changes, including hooks to automate local workflows.
Scaling agents becomes trivial. A quick demo:

π Full documentation at worktrunk.dev π
Context: git worktrees
AI agents like Claude Code and Codex can handle longer tasks without supervision, such that it's possible to manage 5-10+ in parallel. Git's native worktree feature give each agent its own working directory, so they don't step on each other's changes.
But the git worktree UX is clunky. Even a task as small as starting a new
worktree requires typing the branch name three times: git worktree add -b feat ../repo.feat, then cd ../repo.feat.
Worktrunk makes git worktrees as easy as branches
Worktrees are addressed by branch name; paths are computed from a configurable template.
Start with the core commands
Core commands:
Expand into the more advanced commands as needed
Workflow automation:
- Hooks β run commands on create, pre-merge, post-merge, etc
- LLM commit messages β generate commit messages from diffs
- Merge workflow β squash, rebase, merge, clean up in one command
- Interactive picker β browse worktrees with live diff and log previews
- Copy build caches β skip cold starts by sharing
target/,node_modules/, etc between worktrees - ...and lots more
A demo with some advanced features:

Install
Homebrew (macOS & Linux):
&&
Shell integration allows commands to change directories.
Cargo:
&&
On Windows, wt defaults to Windows Terminal's command. Winget additionally installs Worktrunk as git-wt to avoid the conflict:
Alternatively, disable Windows Terminal's alias (Settings β Privacy & security β For developers β App Execution Aliases β disable "Windows Terminal") to use wt directly.
Arch Linux:
&&
Quick start
Create a worktree for a new feature:
$ wt switch --create feature-auth
β Created branch feature-auth from main and worktree @ repo.feature-auth
This creates a new branch and worktree, then switches to it. Do your work, then check all worktrees with wt list:
$ wt list
Branch Status HEADΒ± mainβ Remoteβ
Commit Age Message
@ feature-auth + β +53 0e631add 1d Initial commit
^ main ^β‘ β‘1 0e631add 1d Initial commit
β Showing 2 worktrees, 1 with changes, 1 column hidden
The @ marks the current worktree. + means staged changes, β‘ means unpushed commits.
When done, either:
PR workflow β commit, push, open a PR, merge via GitHub/GitLab, then clean up:
Local merge β squash, rebase onto main, fast-forward merge, clean up:
$ wt merge main
β Generating commit message and committing changes... (2 files, +53, no squashing needed)
Add authentication module
β Committed changes @ a1b2c3d
β Merging 1 commit to main @ a1b2c3d (no rebase needed)
* a1b2c3d Add authentication module
auth.rs | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++
lib.rs | 2 ++
2 files changed, 53 insertions(+)
β Merged to main (1 commit, 2 files, +53)
β Removing feature-auth worktree & branch in background (same commit as main, _)
β Switched to worktree for main @ repo
For parallel agents, create multiple worktrees and launch an agent in each:
The -x flag runs a command after switching; arguments after -- are passed to it. Configure post-start hooks to automate setup (install deps, start dev servers).
Next steps
- Learn the core commands:
wt switch,wt list,wt merge,wt remove - Set up project hooks for automated setup
- Explore LLM commit messages, interactive picker, Claude Code integration, CI status & PR links
- Run
wt --helporwt <command> --helpfor quick CLI reference
Further reading
- Claude Code: Best practices for agentic coding β Anthropic's official guide, including the worktree pattern
- Shipping faster with Claude Code and Git Worktrees β incident.io's workflow for parallel agents
- Git worktree pattern discussion β Community discussion in the Claude Code repo
- @DevOpsToolbox's video on Worktrunk
- git-worktree documentation β Official git reference
Contributing
- β Star the repo
- Tell a friend about Worktrunk
- Open an issue β feedback, feature requests, even a small friction or imperfect user message, or a worktree pain not yet solved
- Share: X Β· Reddit Β· LinkedIn
π Full documentation at worktrunk.dev π