Reference
Files to copy
Configure which gitignored files Conductor copies into new workspaces
"Files to copy" lets you specify glob patterns that are automatically copied into each new workspace. Patterns are configured per repo in Settings -> [repo name].
The default pattern is .env*.

Resolution order
The patterns used for a given repo come from the first source that exists:
.worktreeincludeat the repo root or on remote. If present, the file's contents win and the settings UI shows a read-only preview.- Repo settings (
Settings → {repo name} → Files to copy), stored in the local DB.
For team-shared patterns, commit a .worktreeinclude file at the repo root.
Pattern format
Patterns use .gitignore syntax via the ignore library, including negation.
Example:
.env
.env.*
config/local.json
!*.example#starts a comment.!negates a previous match.- Trailing
/matches a directory only. - Leading
/anchors to the repo root.