From 3fd1b69293332171521d24559e148d10016cfd6c Mon Sep 17 00:00:00 2001 From: Eric-Paul Ickhorn Date: Thu, 23 May 2024 01:27:16 +0200 Subject: [PATCH] structure(gitignore): Added .gitignore with executable code, compiled headers and some folders to ignore. --- .gitignore | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ba62388 --- /dev/null +++ b/.gitignore @@ -0,0 +1,22 @@ + +# IDE/Editor - data +.vscode/ +.eclipse/ + +# Folders that should stay local +.private/ +.build/ + +# Executable code +*.a +*.dll +*.dmg +*.elf +*.exe +*.lib +*.o +*.so + +# Compiled Headers +*.gch +*.pch \ No newline at end of file