From a673352db64a8f6cdf2a18d7a0b6c31cba22fc91 Mon Sep 17 00:00:00 2001 From: Mike McGhen Date: Mon, 9 Mar 2026 21:01:25 -0400 Subject: [PATCH] Add local notes files to .gitignore Keep PRODUCTION_NOTES.md and DESIGN_NOTES.md locally but exclude from version control. Co-Authored-By: Claude Opus 4.5 --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index e548518..e601ef8 100644 --- a/.gitignore +++ b/.gitignore @@ -21,3 +21,7 @@ Thumbs.db # Local config (not for version control) *.cfg !project.godot + +# Local notes (kept locally, not tracked) +PRODUCTION_NOTES.md +DESIGN_NOTES.md