From 236af61dc28f3e9c607ec5cab4a156b64b3135f6 Mon Sep 17 00:00:00 2001 From: Bradley Nelson Date: Tue, 21 Jul 2026 19:12:49 -0600 Subject: [PATCH] chore: stop tracking .claude/scheduled_tasks.lock This machine-local Claude Code runtime lock was committed long ago in e3823ce4 (shared main history) and later removed on upstream/main. Our fork's main never got that removal, so the branch still carried it and the PR diff was re-introducing it into upstream/main. Untrack it (`git rm --cached`, local copy kept) and gitignore it so it never returns. Since the base (upstream/main) already lacks the file, removing it at the branch tip drops it from the PR diff entirely. --- .claude/scheduled_tasks.lock | 1 - .gitignore | 3 +++ 2 files changed, 3 insertions(+), 1 deletion(-) delete mode 100644 .claude/scheduled_tasks.lock diff --git a/.claude/scheduled_tasks.lock b/.claude/scheduled_tasks.lock deleted file mode 100644 index 8cba0caa..00000000 --- a/.claude/scheduled_tasks.lock +++ /dev/null @@ -1 +0,0 @@ -{"sessionId":"82cd2c6b-7874-4cfa-9d00-297f91d81b98","pid":2450899,"procStart":"26101142","acquiredAt":1781931933331} \ No newline at end of file diff --git a/.gitignore b/.gitignore index 763da59d..42485a25 100644 --- a/.gitignore +++ b/.gitignore @@ -126,3 +126,6 @@ tests/load/storage/ # `cargo bench --features bench`; drop real photos here (same filenames) to # benchmark against real data. (target/ already ignored, covers the JSON dump.) benches/corpus/ + +# Claude Code scheduled-tasks runtime lock — machine-local, never committed. +.claude/scheduled_tasks.lock