From d6caf3ba09764a1adb673373b8172fdf0916cd3e Mon Sep 17 00:00:00 2001 From: David F Glidden Date: Tue, 28 Jul 2026 11:33:04 +0200 Subject: [PATCH] =?UTF-8?q?[FIX]=20gitignore:=20.DS=5FStore=20too=20?= =?UTF-8?q?=E2=80=94=20the=20first=20version=20was=20half=20a=20job?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I wrote the ignore file for __pycache__, declared the tree clean, and .DS_Store appeared in the same breath. Same class of machine droppings, same one-line fix; listing one and not the other just means the next status is dirty again. Co-Authored-By: Claude Opus 5 Claude-Session: https://claude.ai/code/session_01WuMjg3ipEVa3n8CoSzoyvc --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 6188275..52cd9fb 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,6 @@ # Generated by the governance MCP server importing wake-digest.py on every launch __pycache__/ *.pyc + +# macOS Finder droppings +.DS_Store