From 1035c63d74d162249f4bb4a539d569d29c237c65 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..cc7fc95 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,6 @@ .vscode node_modules game -build \ No newline at end of file +build +# ↓ 以下是我本地用的私有开发路径(不包含在 PR 中) +dev/ \ No newline at end of file