FAQ
General
What does “paw” stand for?
Parallel AI Worktrees.
Does git-paw work on Windows?
Only through WSL (Windows Subsystem for Linux). git-paw requires tmux, which is not natively available on Windows. See the Installation chapter for WSL setup instructions.
Do I need tmux experience to use git-paw?
No. git-paw creates and manages tmux sessions for you. Mouse mode is enabled by default, so you can click to switch panes and drag to resize. The only tmux shortcut you might need is Ctrl-b d to detach.
Can I use git-paw with AI CLIs not in the supported list?
Yes! Use git paw add-cli to register any CLI binary. See Custom CLIs.
Sessions
What happens if I close my terminal?
The tmux session keeps running in the background. Run git paw again to reattach.
What happens if tmux crashes or my machine reboots?
git-paw saves session state to disk. The next time you run git paw, it detects the saved state and automatically recovers: reuses existing worktrees, recreates the tmux session, and relaunches your AI CLIs.
Can I run multiple git-paw sessions?
One session per repository. To work with multiple repos, open separate terminals and run git paw in each repo directory.
How do I switch between branches in a session?
Click the pane you want (mouse mode is on by default), or use Ctrl-b followed by arrow keys to navigate between panes. Each pane is labeled with its branch and CLI in the border title.
Worktrees
What are git worktrees?
Git worktrees let you check out multiple branches simultaneously in separate directories. Each worktree is a fully functional working copy of the repository sharing the same .git data. Changes in one worktree don’t affect others.
Where does git-paw create worktrees?
As siblings of your main repo directory. For a project at ~/projects/my-app with branch feat/auth:
~/projects/my-app/ ← your repo
~/projects/my-app-feat-auth/ ← worktree created by git-paw
Does stopping a session delete my worktrees?
No. git paw stop kills the tmux session but keeps worktrees and any uncommitted work intact. Only git paw purge removes worktrees.
Can I manually work in a git-paw worktree?
Yes. Worktrees are regular git working directories. You can cd into them, edit files, commit, push — anything you’d do in a normal repo. When you restart the session, git-paw reuses the existing worktrees.
Configuration
Where are config files stored?
| Level | Path |
|---|---|
| Global | ~/.config/git-paw/config.toml |
| Per-repo | .git-paw/config.toml (in repo root) |
Both are optional. See Configuration.
How do I set a default CLI?
Add to your global or repo config:
default_cli = "claude"
How do I disable mouse mode?
mouse = false
This only affects git-paw’s tmux sessions, not your other tmux usage.
Troubleshooting
“Not a git repository”
Run git-paw from inside a git repository. It needs to be anywhere within a repo’s working tree.
“tmux is required but not installed”
Install tmux:
- macOS:
brew install tmux - Ubuntu/Debian:
sudo apt install tmux - Fedora:
sudo dnf install tmux
“No AI CLIs found on PATH”
Install at least one AI coding CLI (see Supported AI CLIs), or register a custom one:
git paw add-cli my-tool /path/to/my-tool
“no space for new pane” in tmux
This can happen with many branches on a small terminal. Make your terminal window larger before launching, or select fewer branches. git-paw applies tiled layout progressively to minimize this issue.
Session state seems stale
git-paw checks tmux liveness to determine effective status. If something seems off, try:
git paw purge --force
git paw start