kindergarten_java/.gitignore
Claude Opus 4.6 10936b7a78 fix: 修复迁移脚本被 .gitignore 忽略的问题
- 添加 !**/db/migration/*.sql 例外规则
- 补充 V32-V37 Flyway 迁移脚本

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-19 09:39:38 +08:00

78 lines
830 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# === 操作系统 ===
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# === 备份文件 ===
backups/
*.sql
*.db
# === 例外Flyway 迁移脚本必须提交 ===
!**/db/migration/*.sql
# === IDE 和编辑器 ===
.vscode/
.idea/
*.swp
*.swo
*~
.project
.classpath
.settings/
# === Python ===
__pycache__/
*.pyc
*.pyo
*.pyd
.Python
venv/
env/
ENV/
# === Node.js ===
node_modules/
dist/
build/
# === 前端自动生成 ===
**/components.d.ts
**/typed-router.d.ts
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
package-lock.json
# === Java ===
target/
*.class
*.jar
*.war
*.ear
# === 测试结果 ===
screenshots/
*.png
*.webm
test-results/
playwright-report/
# === 临时文件 ===
*.tmp
*.temp
*.bak
*.swp
.cache/
# === 上传文件 ===
uploads/
# === 文档生成 ===
docs/node_modules/