Add logs/, settings/, and .events.jsonl to gitignore. These are runtime files created during gt operation. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
61 lines
825 B
Plaintext
61 lines
825 B
Plaintext
# Binaries
|
|
/gt
|
|
*.exe
|
|
|
|
# Build
|
|
/dist/
|
|
/build/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Claude Code local state
|
|
.claude/
|
|
|
|
# Test
|
|
coverage.out
|
|
*.test
|
|
|
|
# Local config
|
|
config.toml
|
|
!config.example.toml
|
|
gt
|
|
|
|
# Runtime state
|
|
state.json
|
|
.runtime/
|
|
|
|
# Beads runtime state (not tracked)
|
|
# Formulas ARE tracked for `go install @latest` - see bottom of file
|
|
.beads/redirect
|
|
.beads/issues.jsonl
|
|
.beads/interactions.jsonl
|
|
.beads/metadata.json
|
|
.beads/mq/
|
|
.beads/last-touched
|
|
.beads/daemon-*.log.gz
|
|
.beads/.sync.lock
|
|
.beads/sync_base.jsonl
|
|
.beads-wisp/
|
|
|
|
# Clone-specific CLAUDE.md (regenerated locally per clone)
|
|
CLAUDE.md
|
|
|
|
# Embedded formulas are committed so `go install @latest` works
|
|
# Run `go generate ./...` after modifying .beads/formulas/
|
|
|
|
# Gas Town (added by gt)
|
|
.beads/
|
|
.logs/
|
|
logs/
|
|
settings/
|
|
.events.jsonl
|