Git Log Viewer
Browse your commit history directly in Maestro:
- Commit history with messages, authors, and timestamps
- Branch visualization with merge points
- Quick navigation to any commit
Cmd+K / Ctrl+K) → “Git Log” or the git menu in the Left Bar.
Diff Viewer
Review file changes with syntax-highlighted diffs:
- Side-by-side comparison of file versions
- Syntax highlighting matched to file type
- Line-by-line changes with additions and deletions clearly marked
Git Worktrees
Git worktrees enable true parallel development by letting you run multiple AI agents on separate branches simultaneously. Each worktree operates in its own isolated directory, so there’s no risk of conflicts between parallel work streams.Managing Worktrees
Worktree sub-agents appear nested under their parent agent in the Left Bar:
- Nested Display — Worktree sub-agents appear indented under their parent agent
- Branch Icon — A green checkmark indicates the active worktree
- Collapse/Expand — Click the chevron on a parent agent to show/hide its worktree children
- Independent Operation — Each worktree agent has its own working directory, conversation history, and state
Creating a Worktree Sub-Agent
- In the agent list (Left Bar), hover over an agent in a git repository
- Click the git branch indicator (shows current branch name)
- In the overlay menu, click “Create Worktree Sub-Agent”
- Configure the worktree:

| Option | Description |
|---|---|
| Worktree Directory | Base folder where worktrees are created (should be outside the main repo) |
| Watch for Changes | Monitor the worktree for file system changes |
| Create New Worktree | Branch name for the new worktree (becomes the subdirectory name) |
~/Projects/Maestro-WorkTrees/). This keeps worktrees organized and prevents them from appearing in your main repo’s file tree.
Worktree Actions
Right-click any worktree sub-agent to access management options:
| Action | Description |
|---|---|
| Rename | Change the display name of the worktree agent |
| Edit Agent… | Modify agent configuration |
| Create Pull Request | Open a PR from this worktree’s branch |
| Remove Worktree | Delete the worktree agent (see below) |
Creating Pull Requests
When you’re done with work in a worktree:- Right-click the worktree agent → Create Pull Request, or
- Press
Cmd+K/Ctrl+Kwith the worktree active → search “Create Pull Request”
- Source branch (your worktree branch)
- Target branch (configurable)
- Auto-generated title and description based on your work
gh) must be installed and authenticated. Maestro will detect if it’s missing and show installation instructions.
Removing Worktrees
When removing a worktree, you have two options:
| Option | What It Does |
|---|---|
| Remove | Removes the sub-agent from Maestro but keeps the git worktree directory on disk |
| Remove and Delete | Removes the sub-agent AND permanently deletes the worktree directory from disk |
Use Cases
| Scenario | How Worktrees Help |
|---|---|
| Background Auto Run | Run Auto Run in a worktree while working interactively in the main repo |
| Feature Branches | Spin up a sub-agent for each feature branch |
| Code Review | Create a worktree to review and iterate on a PR without switching branches |
| Parallel Experiments | Try different approaches simultaneously without git stash/pop |
Tips
- Name branches descriptively — The branch name becomes the worktree directory name
- Use a dedicated worktree folder — Keep all worktrees in one place outside the main repo
- Clean up when done — Remove worktree agents after merging PRs to avoid clutter
- Watch for Changes — Enable file watching to keep the file tree in sync with worktree activity