From 05ba941b02e97aee8f5e413d0cb5515056886ae1 Mon Sep 17 00:00:00 2001 From: yexu2535 <16261513+yexu2535@user.noreply.gitee.com> Date: Fri, 24 Oct 2025 08:47:59 +0000 Subject: [PATCH] add .gitignore Signed-off-by: yexu2535 <16261513+yexu2535@user.noreply.gitee.com> --- .gitignore | 76 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bbf1e70 --- /dev/null +++ b/.gitignore @@ -0,0 +1,76 @@ +### IDE +.idea +*.iml +.vscode +.clangd +.cache +.clwb +.ijwb + +###go.sum +*.sum + +### output dir +**/output/* +**/_output/* + +### protobuf +*.pb.go +*_pb.js +*_pb2.py + +.project +*.prefs + +### ignore all `build` dir inside pkg or tools +functionsystem/pkg/*/**/build/ + +### ninja files +.ninja_* +build.ninja + +### vendor +vendor/ + +### build +build/ + +### thirdparty build cache +thirdparty/thirdparty/example/build + +### functionsystem build cache +functionsystem/build/CMakeFiles +functionsystem/build/lib +functionsystem/build/bin +functionsystem/build/src +functionsystem/build/tests +functionsystem/build/*.txt +functionsystem/build/cmake* +functionsystem/build/*cmake +functionsystem/build/build.ninja +functionsystem/build/compile_commands.json +functionsystem/output/ + +### litebus build cache +common/litebus/build/ +common/litebus/test/ssl_utils/ +### logs build cache +common/utils/logs/build/ +### metrics build cache +common/utils/metrics/build/ + +### generated files +functionsystem/src/common/utils/version.h + +### copied files +common/utils/proto/pb/posix/*.pb.* +common/utils/proto/posix/common.proto +common/utils/proto/posix/core_service.proto +common/utils/proto/posix/runtime_rpc.proto +common/utils/proto/posix/runtime_service.proto +common/utils/proto/posix/affinity.proto + +### package cache +.build + + -- Gitee