From 82b726ab3e37763cbeab0de46ac038c7d2a38d05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E5=AE=97=E5=B9=B3?= Date: Thu, 9 Jul 2026 16:49:46 +0800 Subject: [PATCH] =?UTF-8?q?.gitignore=20=E8=A1=A5=E5=85=85=E5=BF=BD?= =?UTF-8?q?=E7=95=A5=E8=A7=84=E5=88=99=EF=BC=9AIDE=20=E6=9C=AC=E5=9C=B0?= =?UTF-8?q?=E9=85=8D=E7=BD=AE=20/=20=E5=BD=92=E6=A1=A3=20/=20=E6=9E=84?= =?UTF-8?q?=E5=BB=BA=E6=97=A5=E5=BF=97=20/=20Office=20=E9=94=81=E6=96=87?= =?UTF-8?q?=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - *.user / *.user.*:Qt Creator 等本地配置(各示例目录生成的 CMakeLists.txt.user) - *.7z / *.zip:项目归档与源码打包,不入库 - *.log:构建日志(build_full.log 等) - ~$*:Office 打开 .pptx/.docx 时的临时锁文件 Co-Authored-By: Claude Opus 4.8 --- .gitignore | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.gitignore b/.gitignore index 58839e2..4946c1f 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,7 @@ # Build outputs build/ build-*/ +build_*/ out/ *.o *.obj @@ -14,6 +15,10 @@ moc_*.cpp qrc_*.cpp ui_*.h +*~ +*.bak +*_ + # Tooling caches .qt/ .cache/ @@ -37,3 +42,17 @@ __pycache__/ /file.txt /in.txt /person.txt + +# IDE 本地配置(Qt Creator 等,切勿入库) +*.user +*.user.* + +# 归档 / 打包(不入库) +*.7z +*.zip + +# 构建日志 +*.log + +# Office 临时锁文件(打开 .pptx/.docx 时产生) +~$*