From 632282436be625443d4f2e5f46f873b22b65d112 Mon Sep 17 00:00:00 2001 From: ginuerzh Date: Mon, 13 Jul 2026 16:49:00 +0800 Subject: [PATCH] chore: ignore build artifacts, codegraph index, python cache .build/, .codegraph/ (generated multi-hundred-MB db), and __pycache__/ are local artifacts that should not be tracked. --- .gitignore | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.gitignore b/.gitignore index 43b3b57..798c7cd 100644 --- a/.gitignore +++ b/.gitignore @@ -39,3 +39,12 @@ snap /*.yaml *.txt dist/ + +# Build artifacts +.build/ + +# Codegraph index (generated, multi-hundred-MB db) +.codegraph/ + +# Python cache +__pycache__/