new file: .gitignore

This commit is contained in:
2026-05-25 17:05:07 +08:00
commit 30cba5ee96
+21
View File
@@ -0,0 +1,21 @@
# 忽略特定文件
# secret.json
# config.local.js
# 忽略整个目录
storage/
__pycache__/
.claude/
.vscode/
# 使用通配符
*.log
*.tmp
.DS_Store
# 否定规则(不忽略)
# !important.log
# 忽略特定类型文件但保留目录
# *.pyc
# !dir/*.pyc