forked from sampsapursiainen/zeffiro_interface
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitattributes
32 lines (28 loc) · 949 Bytes
/
.gitattributes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
## Git Attributes
#
# This file contains specifications that make Git automatically make certain
# edits to text files, before they are added to the working tree (the set of
# tracked files). The conversions include changing Windows line endings
# <CR><LF> to Unix equivalents <LF>, so that text files would contain less
# clutter on such systems.
#
# File types not listed here will not be tampered with, unless your local Git
# configuration file instructs Git to do so. By default it does not do it for
# any files.
# Declare text files, whose line endings will be normalized.
*.txt text eol=lf
*.asc text eol=lf
*.md text eol=lf
*.zef text eol=lf
*.m text eol=lf
*.sh text eol=lf
README text eol=lf
# Then declare binary files to indicate which files should absolutely not be
# touched, even if a user wants to.
*.pdf binary
*.png binary
*.jpg binary
*.mlapp binary
*.fig binary
*.mat binary
*.stl binary