Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 15 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,21 @@ uploads/
# uv lockfile — not portable across PyPI proxies, generate locally with `uv lock`
uv.lock

# Codex CLI generated/cached files (only the bundled model catalog is tracked)
.codex/*
!.codex/databricks-models.json
# Codex CLI generated/cached files. The bundled model catalog
# (.codex/databricks-models.json) is tracked. Listed file-by-file rather
# than `.codex/* + !.codex/databricks-models.json` because `databricks sync`
# (and several other gitignore-honoring tools) doesn't respect the negation
# pattern — that broke the deploy of databricks-models.json to the app
# workspace, which Codex needs to start.
Comment on lines +24 to +29
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
# Codex CLI generated/cached files. The bundled model catalog
# (.codex/databricks-models.json) is tracked. Listed file-by-file rather
# than `.codex/* + !.codex/databricks-models.json` because `databricks sync`
# (and several other gitignore-honoring tools) doesn't respect the negation
# pattern — that broke the deploy of databricks-models.json to the app
# workspace, which Codex needs to start.

You don't need a giant comment in the codebase for the change

.codex/config.toml
.codex/.env
.codex/AGENTS.md
.codex/.personality_migration
.codex/memories/
.codex/tmp/
.codex/sessions/
.codex/cron/
.codex/skills/

# Codex skills are generated at runtime by setup_codex.py from .claude/skills/
.agents/
Expand Down