# 忽略所有 .log 文件 *.log logs/*.log # 忽略特定文件 config.ini config.json secrets.json # 忽略整个目录 node_modules/ dist/ build/ logs/ .conda/ __pycache__/ # 忽略目录中的特定文件 logs/*.tmp # 忽略所有系统文件 .DS_Store Thumbs.db # 忽略 IDE 配置文件 .vscode/ .idea/ # 例外:不忽略 dist 目录下的 important.js !dist/important.js # 同时忽略所有 .pyc 文件(可选但推荐) *.pyc *.pyo *.pyd