From 5ea4e77958c2d9e041bedc2dbb1d760aae35b092 Mon Sep 17 00:00:00 2001 From: Jennifer Cwagenberg Date: Wed, 30 Mar 2022 21:21:05 -0500 Subject: [PATCH] Create gitignore for bazel and compiletime artifacts --- .gitignore | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..00825588b --- /dev/null +++ b/.gitignore @@ -0,0 +1,13 @@ +# Ignore all bazel-* symlinks. There is no full list since this can change +# based on the name of the directory bazel is cloned into. +/bazel-* + +# Build Artifacts +build/ +dist/ +*.egg-info/ +metadata_store_extension.so + +# Compiled grpc/protobuf files +*_pb2.py +*_pb2_grpc.py