From e6870c5f2d66751b2aa4b9671e16fcdb5ad5c9ed Mon Sep 17 00:00:00 2001 From: Janita Willumsen Date: Thu, 14 Sep 2023 10:21:22 +0200 Subject: [PATCH] Add gitignore --- .gitignore | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9c2126e --- /dev/null +++ b/.gitignore @@ -0,0 +1,47 @@ +# Prerequisites +*.d + +# Compiled Object files +*.slo +*.lo +*.o +*.obj + +# Precompiled Headers +*.gch +*.pch + +# Compiled Dynamic libraries +*.so +*.dylib +*.dll + +# Fortran module files +*.mod +*.smod + +# Compiled Static libraries +*.lai +*.la +*.a +*.lib + +# Executables +*.exe +*.out +*.app + +# Latex +*.aux +*.log +*.out +*.bib +*.synctex.gz +*.bbl + +# C++ specifics +src/* +!src/Makefile +!src/*.cpp +!src/*.hpp +!src/*.py