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.
This commit is contained in:
Eric-Paul Ickhorn 2024-06-16 23:10:55 +02:00
parent 776da2f85a
commit 4a835a0ece
Signed by: epickh
GPG Key ID: 1358818BAA38B104
1 changed files with 5 additions and 0 deletions

5
.gitignore vendored
View File

@ -7,3 +7,8 @@
*.hex
*.o
*.so
# Full ignored folders
*.build/
*.private/
*.vscode/