From 34a8f7154e9118a00e9f76fb390bda02c3b43ef4 Mon Sep 17 00:00:00 2001 From: Ramadhan Sjamsani Date: Thu, 21 May 2026 11:15:26 +0800 Subject: [PATCH] gitignore: match agent-memory at any depth The previous `.claude/agent-memory/` pattern only matched at repo root. backend/.claude/agent-memory/ was still showing as untracked. Co-Authored-By: Claude Opus 4.7 (1M context) --- .gitignore | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 88f0bee..11257aa 100644 --- a/.gitignore +++ b/.gitignore @@ -13,8 +13,10 @@ build/ .flutter-plugins-dependencies bugreport-*.zip -# Claude per-project agent memory (local-only, machine-specific) -.claude/agent-memory/ +# Claude per-project agent memory (local-only, machine-specific) — nested +# patterns need the `**/` prefix to match below the repo root (e.g. +# backend/.claude/agent-memory/). +**/.claude/agent-memory/ # Maestro local debug artifacts (screenshots dumped at app root by # `--debug-output` / takeScreenshot; results journal regenerated each run)