From eee8ee310360dc9d69fa4d8c44f26124ee9ab4f8 Mon Sep 17 00:00:00 2001 From: Dominik Jain Date: Sat, 2 May 2026 12:18:20 +0200 Subject: [PATCH] :paperclip: Exclude versioned .md files from .gitignore pattern Exclude files like CONTRIBUTING.md or README.md from being ignored by /*.md pattern, as this can influence agent behaviour (configurations that disallow ignored files from being edited) --- .gitignore | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitignore b/.gitignore index aa98bd338a..551b5ed318 100644 --- a/.gitignore +++ b/.gitignore @@ -15,6 +15,12 @@ .repl /*.jpg /*.md +!CHANGES.md +!CONTRIBUTING.md +!README.md +!AGENTS.md +!CODE_OF_CONDUCT.md +!SECURITY.md /*.png /*.svg /*.sql