From dece1f7a642a9c38881c69fb1d5a16503d0609cd Mon Sep 17 00:00:00 2001 From: Avimitin Lu Date: Thu, 8 Jun 2023 08:50:15 +0800 Subject: [PATCH] [chore] add .cache directory into .gitignore (#160) The clangd lsp server will create a .cache directory in the buddy-mlir root directory which shouldn't be tracked by git. Signed-off-by: Avimitin --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 810bc6f18..485cccfcf 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,6 @@ # ONNX models *.onnx + +# Clangd cache +.cache