From 8e2163018dae3e3f938e7206483f37ec423a2c81 Mon Sep 17 00:00:00 2001 From: cloudhan Date: Sat, 7 Jan 2023 06:58:57 +0800 Subject: [PATCH] Ignore more build directories and clangd files (#14154) Ignore all `build_*` directories in repo root. Ignore `.cache` and `compile_commands.json` which are related to clangd cache and configuration. --- .gitignore | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 336bb68c92..26620d1bd5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,6 @@ # build, distribute, and bins (+ python proto bindings) build -build_host_protoc -build_android -build_ios +build_*/ .build_debug/* .build_release/* distribute/* @@ -56,3 +54,6 @@ onnxruntime/python/version_info.py .envrc .psenvrc *.csproj.user +# clangd +.cache/ +compile_commands.json