From 970869babd052cc4a50ab4c65a033b12bb255709 Mon Sep 17 00:00:00 2001 From: Matej Focko Date: Sun, 18 Aug 2024 23:19:49 +0200 Subject: [PATCH] chore(gitignore): add compiled C++ and cache Signed-off-by: Matej Focko --- .gitignore | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.gitignore b/.gitignore index 2d38b28..da9988a 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,10 @@ playground # ignore VSCode, cause screw it .vscode + +# ignore compiled C++ files with given names +cpp/* +!cpp/*.cpp + +# ignore cache directory +.cache/