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:
commit
1bbe4fd1ca
|
@ -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
|
Loading…
Reference in New Issue