From 5d897090b978629cd64476b0a8f055a6607ddd8d Mon Sep 17 00:00:00 2001 From: Denis Kasak Date: Mon, 4 Feb 2019 14:03:29 +0100 Subject: [PATCH] Add a .gitattributes file. This ensures all text files are properly marked as such from git's perspective. This will allow it to determine whether it should convert line endings to the platform's native endings on checkout, for a given file. The Python-specific parts were sourced from here https://github.com/alexkaratarakis/gitattributes/blob/master/Python.gitattributes For all other files, it lets git's heuristics determine whether it is a text file. --- .gitattributes | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..29da73ba --- /dev/null +++ b/.gitattributes @@ -0,0 +1,28 @@ +# Set the default behavior, which is to have git automatically determine +# whether a file is a text or binary, unless otherwise specified. + +* text=auto + +# Basic .gitattributes for a python repo. + +# Source files +# ============ +*.pxd text diff=python +*.py text diff=python +*.py3 text diff=python +*.pyw text diff=python +*.pyx text diff=python + +# Binary files +# ============ +*.db binary +*.p binary +*.pkl binary +*.pyc binary +*.pyd binary +*.pyo binary + +# Note: .db, .p, and .pkl files are associated +# with the python modules ``pickle``, ``dbm.*``, +# ``shelve``, ``marshal``, ``anydbm``, & ``bsddb`` +# (among others).