From 774f71c8ccd6b0d675a1259e36b811fe6581cb74 Mon Sep 17 00:00:00 2001 From: Francwa Date: Mon, 18 May 2026 15:39:04 +0200 Subject: [PATCH] chore(gitignore): track CHANGELOG.md explicitly The blanket *.md ignore was hiding CHANGELOG.md, forcing 'git add -f' on every update. Allow-list it so the file lives under normal git tracking. CLAUDE.md stays local (user keeps it personal until a dedicated repo). --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 248591c..5dda391 100644 --- a/.gitignore +++ b/.gitignore @@ -71,7 +71,8 @@ logs/* # Documentation folder docs/ -# .md files +# .md files (project-level Markdown is brol-y; allow-list the ones we track) *.md +!CHANGELOG.md #