]> SALOME platform Git repositories - tools/medcoupling.git/commitdiff
Salome HOME
feat: add a .gitignore file
authorGbkng <guillaume.brooking@gmail.com>
Mon, 15 Apr 2024 08:07:49 +0000 (10:07 +0200)
committerGbkng <guillaume.brooking@gmail.com>
Tue, 23 Apr 2024 07:48:25 +0000 (09:48 +0200)
.gitignore [new file with mode: 0644]

diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..c4b70d3
--- /dev/null
@@ -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/**