Add .gitignore, mostly with binary files

This commit adds a .gitignore with unix and windows binaries, debugging
data from valgrind (dumps) and some folders.

The folders are: .build (the build-object folder), .vscode (Visual
Studio Code / VSCodium) and .private, a private folder to hold back some
files just for convenience.
This commit is contained in:
Eric-Paul Ickhorn 2024-07-01 16:35:17 +02:00
commit 1bbe4fd1ca
1 changed files with 25 additions and 0 deletions

25
.gitignore vendored Normal file
View File

@ -0,0 +1,25 @@
# Convenience Folder
*.private/
# Build data
*.build/
# IDE-/Editor - Data
*.vscode/
# Unix binaries
*.a
*.elf
*.o
*.so
*.out
a.out
# Windows binaries
*.dll
*.exe
*.lib
# Debugging data
*.vgcore