From 4a835a0ece43c1dc9edcb19c4bde3088b9041f76 Mon Sep 17 00:00:00 2001 From: Eric-Paul Ickhorn Date: Sun, 16 Jun 2024 23:10:55 +0200 Subject: [PATCH] Add private, build and vscode folder to .gitignore The private folder is for convenience, for putting some files away and for own TODO lists; generally for data which is related to the project but shouldn't be committed. The build folder contains intermediate/object files for building the different stages; it should be ignored explicitly, even though the file ending of all files marks the folder as ignored implicitly. --- .gitignore | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitignore b/.gitignore index 371046a..7d6f780 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,8 @@ *.hex *.o *.so + +# Full ignored folders +*.build/ +*.private/ +*.vscode/