From 13815b76d69696d04d34922c603af023c2fe66e4 Mon Sep 17 00:00:00 2001 From: "Gregoire Malandain (from ross)" <gregoire.malandain@inria.fr> Date: Fri, 9 Jul 2021 15:11:59 +0200 Subject: [PATCH] add .gitignore --- .gitignore | 84 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1ff92d7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,84 @@ +# specific files and folders # +################################## +src/ASTEC/CommunFunctions/libtiff-0.4.0.zip +src/ASTEC/CommunFunctions/ImageHandling.zip + +# astec generated files # +######################### +*.pkl +FUSE +INTRAREG +LOGS +POST +SEG + +# Compiled source # +################### +*.com +*.class +*.dll +*.exe +*.o +*.so +*.a +*.pyc + +# Compiled LaTeX # +################### +*.aux +*.blg +*.bbl +*.toc +*.log +*.synctex.gz + +# Packages # +############ +# it's better to unpack these files and commit the raw source +# git has its own built in compression methods +*.7z +*.dmg +*.gz +*.iso +*.jar +*.rar +*.tar +*.zip + +# Logs and databases # +###################### +*.log +*.sql +*.sqlite + +# OS generated files # +###################### +.DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes +Icon? +ehthumbs.db +Thumbs.db + +# Merge files # +############### +*.orig + +# particular directories # +########################## +.idea/ +.svn/ +build/ +build*/ +bin/ +binaries/ +external/*/doc +lib/ + +# CMakeLists temporary files # +############################## +CMakeLists.txt.user +CMakeLists.txt.user.* + -- GitLab