From 613c2698d8a32bd7902763f06a4cd87c2445cbaa Mon Sep 17 00:00:00 2001 From: Sin-Kang Date: Mon, 14 Sep 2026 00:24:36 +0900 Subject: [PATCH] chore: keep graft's local graph cache out of git but in search graft writes a regenerable graph cache under graft/. .gitignore now excludes it from git, and .ignore re-admits the tree for ripgrep (which reads .ignore before .gitignore) while still skipping the .cache and .graph build directories. --- .gitignore | 3 +++ .ignore | 5 +++++ 2 files changed, 8 insertions(+) create mode 100644 .ignore diff --git a/.gitignore b/.gitignore index 5be10cf..e6f65bd 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,6 @@ playwright-report/ dist-worker/ *storybook.log *.log + +# graft's local graph cache — regenerable, not committed (run `graft build`). +/graft/ diff --git a/.ignore b/.ignore new file mode 100644 index 0000000..615e581 --- /dev/null +++ b/.ignore @@ -0,0 +1,5 @@ +# graft's cards are gitignored but should stay greppable: ripgrep reads +# .ignore before .gitignore, so this re-admits the tree to search only. +!graft/ +graft/.cache/ +graft/.graph/