From 999a4e78038cbe68afa06d8687ff88c5d1469545 Mon Sep 17 00:00:00 2001 From: chuyongshuo <1974760058@qq.com> Date: Fri, 7 Mar 2025 17:08:14 +0800 Subject: [PATCH] =?UTF-8?q?=E6=98=8C=E6=B5=A9MQTT=E5=85=A8=E9=87=8F?= =?UTF-8?q?=E6=B6=88=E6=81=AF=E6=8E=A5=E6=94=B6=E9=A1=B9=E7=9B=AE-1016?= =?UTF-8?q?=E8=AE=BE=E5=A4=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ea3b3e1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,27 @@ +# 忽略编译生成的类文件 +*.class + +# 忽略 Maven 和 Gradle 的构建输出 +/target/ +/build/ + +# 忽略 IDE 相关文件 +.idea/ +*.iml + +# 忽略日志文件 +*.log + +# 忽略临时文件 +*.tmp +*.temp + +# 忽略操作系统生成的文件 +.DS_Store +Thumbs.db + +# 忽略 JAR 文件 +*.jar + +# 忽略环境配置文件 +.env