From 2b12c3551593f81d49ac3e3151be227941ce6d70 Mon Sep 17 00:00:00 2001 From: D-D|1 Date: Wed, 25 Jun 2025 10:01:09 +0200 Subject: [PATCH] chore: add .gitignore to exclude dev folders Added .gitignore to exclude local development folders: - .vscode/ - node_modules/ - build/ - src/territorial/ (used for local analysis) This helps avoid accidental commits of non-source files. --- .gitignore | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 134ec4a..2a85718 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,6 @@ .vscode node_modules game -build \ No newline at end of file +build +# ↓ 以下是我本地用的私有开发路径(不包含在 PR 中) +src/territorial/ \ No newline at end of file