From bea7f08f44a51cc0cf3a42adc2e2e005972dffb0 Mon Sep 17 00:00:00 2001 From: nnbcccscdscdsc <2709767634@qq.com> Date: Fri, 13 Mar 2026 08:07:41 +0000 Subject: [PATCH] =?UTF-8?q?Docs:=E6=9B=B4=E6=96=B0ignore=E6=96=87=E4=BB=B6?= 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..91b15f2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,27 @@ +# === 编译产物 (Compiled files) === +# 忽略所有对象文件 +*.o + +# === 可执行文件 (Executables) === +# 建议将所有可执行文件产出到 build/ 目录,然后忽略整个目录 +build/ +# 如果你直接在根目录生成,手动忽略它们(根据你的项目名修改) +server_pc +client_arm +relay_main + +# === 编辑器与 IDE (IDE & Editors) === +# 忽略 VS Code 配置 +.vscode/ +# 忽略某些编译数据库 +compile_commands.json +.clangd/ + +# === 日志与测试数据 (Logs & Data) === +# 忽略程序运行生成的日志文件(csv, log等) +*.log +*.csv +# 忽略测试用的视频或大文件 +*.mp4 +*.avi +*.dat