From b7f95d3cedb4c6392138205e7ad1b641bf5c4481 Mon Sep 17 00:00:00 2001 From: gbpark Date: Tue, 7 Apr 2026 18:06:34 +0900 Subject: [PATCH] chore: split .stignore into shared file for auto-sync Move ignore patterns to .stignore-shared (syncs across machines). .stignore becomes a per-machine stub with #include directive. Co-Authored-By: Claude Opus 4.6 (1M context) --- .gitignore | 3 +++ .stignore => .stignore-shared | 0 2 files changed, 3 insertions(+) rename .stignore => .stignore-shared (100%) diff --git a/.gitignore b/.gitignore index d78afb7a..122c11be 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,9 @@ # Claude Code .claude/ +# Syncthing local stub (each machine has its own; real patterns in .stignore-shared) +.stignore + # Dependencies node_modules/ jspm_packages/ diff --git a/.stignore b/.stignore-shared similarity index 100% rename from .stignore rename to .stignore-shared