Elaborate the root .gitignore
The gitignore now contains endings of common executable and object code files on Windows and Linux, as well as some image file endings and, for the sole need of being complete, moving picture file endings.
This commit is contained in:
parent
da3ce2dde9
commit
3ddac3bfe0
|
@ -1,4 +1,27 @@
|
||||||
|
|
||||||
/.private/
|
# Hidden folders
|
||||||
/.build/
|
/.*
|
||||||
|
*/.*
|
||||||
|
|
||||||
|
# Unixoid executables (ELF format)
|
||||||
|
*.a
|
||||||
|
*.elf
|
||||||
|
*.o
|
||||||
|
*.so
|
||||||
|
|
||||||
/voxula
|
/voxula
|
||||||
|
|
||||||
|
# Windows Executables (COFF/PE-format)
|
||||||
|
*.dll
|
||||||
|
*.exe
|
||||||
|
*.lib
|
||||||
|
|
||||||
|
# Images
|
||||||
|
*.bmp
|
||||||
|
*.jpeg
|
||||||
|
*.jpg
|
||||||
|
*.png
|
||||||
|
|
||||||
|
# Moving Pictures
|
||||||
|
*.avi
|
||||||
|
*.mp4
|
||||||
|
|
Loading…
Reference in New Issue