diff options
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000000..765f3e124b02 --- /dev/null +++ b/.gitignore @@ -0,0 +1,25 @@ +# Common build output directory names +.build/ +_build/ +build-output/ +cmake-out/ + +# Common bazel output directories +bazel-* + +# Backup files for Emacs +*~ + +# Ignore IDEA / IntelliJ files +.idea/ +cmake-build-*/ + +# This is a staging directory used to upload the documents to gihub.io +github-io-staging/ + +# Ignore Visual Studio Code files +.vsbuild/ +.vscode/ + +google/cloud/storage/testbench/__pycache__/ +google/cloud/storage/testbench/*.pyc |