From 4b4c9d1bc7509ee09e246c43d8a84d8d37a68480 Mon Sep 17 00:00:00 2001 From: Benjamin Slingo Date: Sat, 30 Aug 2025 09:02:49 -0400 Subject: [PATCH] Add documentation files to gitignore - Ignore all .md files except README.md - Prevent future commits of temporary documentation files --- .gitignore | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 2eed6f2..e25ae3b 100644 --- a/.gitignore +++ b/.gitignore @@ -69,4 +69,12 @@ coverage/ *.lcov # AI Assistant metadata -.serena/ \ No newline at end of file +.serena/ + +# Documentation files (keep only README.md) +CHANGES.md +CLAUDE.md +DEPLOYMENT.md +NEXT-STEPS.md +*.md +!README.md \ No newline at end of file