From caf8f5b754493dc201fe2d21cc47aeeaa285fdde Mon Sep 17 00:00:00 2001 From: Jeroen Schweitzer Date: Sat, 6 Jun 2026 11:40:49 +0200 Subject: [PATCH] chore(meta): narrow .pql gitignore to track changelog (pql migration phase 0) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The blanket `.pql/` ignore would have hidden `.pql/changelog/` — pql's durable, git-versioned planning state — making the whole migration's output invisible to git. Narrow to ignore only the rebuildable DBs (index/pql .db + WAL/SHM) and track config.yaml + changelog/. Co-Authored-By: Claude Opus 4.8 (1M context) --- .gitignore | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 003af4f4f..afca18310 100644 --- a/.gitignore +++ b/.gitignore @@ -83,4 +83,9 @@ wiki/economics/corporations/generated_corporations.toml # Local agent tooling caches (per-machine, not shared) .clide/ -.pql/ + +# pql: ignore the rebuildable local databases (index + planning DB + WAL/SHM +# sidecars), but TRACK .pql/config.yaml and .pql/changelog/ — the changelog is +# pql's durable, git-versioned planning state (LWW, idempotent replay). +.pql/*.db +.pql/*.db-*