From d8acf29a0f19dfcd004de426e1c96e1d609de06d Mon Sep 17 00:00:00 2001 From: Mats Kindahl Date: Fri, 4 Sep 2020 08:52:45 +0200 Subject: [PATCH] Add common patterns to .gitignore Patterns `#*#` and `.#*` are for auto-genereated files from Emacs and can end up in source directories. Pattern `.clangd` is the working directory for `clangd` and handles source code indexing. --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 7daa387f1..05a113dfd 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ +\#*# +.#* *~ **/CMakeFiles/ **/CMakeCache.txt @@ -22,6 +24,7 @@ typedef.list /.vs /compile_commands.json /.DS_Store +/.clangd /CMakeSettings.json /out/*