From: Gbkng Date: Mon, 15 Apr 2024 08:07:49 +0000 (+0200) Subject: feat: add a .gitignore file X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=aade8455711060cb7c719d26c18c85ef5ab011a7;p=tools%2Fmedcoupling.git feat: add a .gitignore file --- diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..c4b70d390 --- /dev/null +++ b/.gitignore @@ -0,0 +1,36 @@ +# This .gitignore is reversed: everything is ignored by default, and versioned +# files must be un-ignored. +# To get the complete list of files ignored by git, you can use the following command: +# +# [WARNING] This command is aggressive and can delete un-commited work. Be sure +# to have a backup of your local repository before proceeding. +# +# `git rm -r --cached . && git ls-files --others --ignored --exclude-standard` +# + +# Ignore everything +* + +!.gitignore +# CMake config file +!CMakeLists.txt +!MEDCouplingConfig.cmake.in +!MEDCoupling_version.h.in +# pre-commit configuration file +!.pre-commit-config.yaml +# license file +!COPYING + +# recursively allow subdirectories +!*/ + +# autotools related files (obsolete) +!/adm_local/** +# documentation +!/doc/** +# data for tests and documentation +!/resources/** +# source code +!/src/** +# scripts related to transition from version 7 to 8 of MEDCoupling (i.e. of SALOME) +!/v8_work/**