From 3ddac3bfe084f825e09f599018e5e955b405f65f Mon Sep 17 00:00:00 2001 From: Eric-Paul Ickhorn Date: Mon, 9 Sep 2024 21:37:16 +0200 Subject: [PATCH] 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. --- .gitignore | 29 ++++++++++++++++++++++++++--- 1 file changed, 26 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index c233c6e..4a69e75 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,27 @@ -/.private/ -/.build/ -/voxula \ No newline at end of file +# Hidden folders +/.* +*/.* + +# Unixoid executables (ELF format) +*.a +*.elf +*.o +*.so + +/voxula + +# Windows Executables (COFF/PE-format) +*.dll +*.exe +*.lib + +# Images +*.bmp +*.jpeg +*.jpg +*.png + +# Moving Pictures +*.avi +*.mp4