From 3693c256c601cc4c0ac7554561aefbb470763fe8 Mon Sep 17 00:00:00 2001 From: yexu2535 <16261513+yexu2535@user.noreply.gitee.com> Date: Fri, 24 Oct 2025 08:29:37 +0000 Subject: [PATCH] add .gitignore Signed-off-by: yexu2535 <16261513+yexu2535@user.noreply.gitee.com> --- .gitignore | 105 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 105 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..28c8079 --- /dev/null +++ b/.gitignore @@ -0,0 +1,105 @@ +### IDE +.idea +*.iml +.vscode +.clangd +.cache +.clwb +.ijwb + +### logs +tests/st/**/*.log* +tests/st/**/*.INFO* + +###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/ +!docs/contributor_guide/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/ + +### functionsystem st download +functionsystem/dependency/ +functionsystem/tests/st/cases/gtest + +### litebus build cache +common/litebus/build/ +### logs build cache +common/utils/logs/build/ +### metrics build cache +common/utils/metrics/build/ + +### generated files +functionsystem/src/common/utils/version.h +functionsystem/pkg/common/**/*.pb.* +functionsystem/pkg/frontend/**/*.fb.go +functionsystem/pkg/function_repo/storage/kv.go + +### 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 +.doxygendocs +docs/_build/ + +### runtime build cache +__pycache__ +.pytest_cache +python/yr.egg-info +python/dist/*.whl +python/yr/*.so* +tests/st/python/pkg + +### st build cache +tests/st/cpp/build +tests/st/cpp/gtest +tests/st/java/**/*.jar +tests/st/java/**/output.txt +tests/st/**/failed_case_list + +docs/**/generated/ +litebus/test/ssl_utils/ -- Gitee