summaryrefslogtreecommitdiffstats
path: root/.gitattributes
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2023-03-02 20:01:10 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2023-03-02 20:01:10 +0000
commitda875fcb62c801b8d19b3d4d984ad963574fb356 (patch)
tree3d85503747c56c2a387b291524442946f4bebb73 /.gitattributes
parentInitial commit. (diff)
downloadpysilfont-da875fcb62c801b8d19b3d4d984ad963574fb356.tar.xz
pysilfont-da875fcb62c801b8d19b3d4d984ad963574fb356.zip
Adding upstream version 1.6.0.upstream/1.6.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '.gitattributes')
-rw-r--r--.gitattributes42
1 files changed, 42 insertions, 0 deletions
diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 0000000..b9f392c
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1,42 @@
+# .gitattributes for pysilfont
+
+# Based on https://github.com/alexkaratarakis/gitattributes/blob/master/Python.gitattributes
+# plus additions for pysilfont
+
+# Designed to tell git how to best deal with certain file formats
+# The goal for eols is to have LF in the repo and platform-specific
+# endings, when appropriate, in the working copy on all platforms.
+# To tweak to your particular needs,
+# see http://git-scm.com/book/en/Customizing-Git-Git-Attributes
+
+# The following causes git to auto detect text files which will have eol
+# conversion applied according to core.autocrlf and core.eol
+* text=auto
+
+
+# Text files
+# ============
+*.md text
+*.fea* text
+*.pxd text
+*.py text
+*.py3 text
+*.pyw text
+*.pyx text
+*.sh text
+*.txt text
+
+# Binary files
+# ============
+*.db binary
+*.p binary
+*.pkl binary
+*.pyc binary
+*.pyd binary
+*.pyo binary
+*.png binary
+
+# Note: .db, .p, and .pkl files are associated
+# with the python modules ``pickle``, ``dbm.*``,
+# ``shelve``, ``marshal``, ``anydbm``, & ``bsddb``
+# (among others). \ No newline at end of file