You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Alternatively, create a `.worktreeinclude` file in your repository root:
375
+
376
+
```gitignore
377
+
# .worktreeinclude - files to copy to new worktrees
378
+
# Comments start with #
379
+
380
+
**/.env.example
381
+
**/CLAUDE.md
382
+
*.config.js
383
+
```
384
+
385
+
The file uses `.gitignore`-style syntax (one pattern per line, `#` for comments, empty lines ignored). Patterns from `.worktreeinclude` are merged with `gtr.copy.include` config settings - both sources are used together.
386
+
372
387
#### Security Best Practices
373
388
374
389
**The key distinction:** Development secrets (test API keys, local DB passwords) are **low risk** on personal machines. Production credentials are **high risk** everywhere.
0 commit comments