Settings Masterclass

Git & Worktree Orchestration

Configuring parallel development isolation.

Git Worktrees are the foundation of Blaze's multi-agent capability. This section manages how those isolated environments are created and cleaned up.

Worktrees

Worktree Directory

  • Storage Path: Choose where Blaze creates hidden worktrees (default: {project_root}/.blaze-worktrees/).
  • Auto-Cleanup: Enable this to automatically delete worktrees and their associated branches when a session is closed.

Branch Naming

Define the pattern for branches created by Blaze agents:

  • Default: blaze-session-{id}
  • Custom: {user}-blaze-{turn}

Merge Strategies

Configure how agents' work is merged back into your main branch:

  • Fast-forward only
  • Create Merge Commit
  • Squash and Merge

Next: Visual Hooks Builder.