-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitattributes
executable file
·57 lines (50 loc) · 1.42 KB
/
.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# .gitattributes template for an open font design workflow
# Designed to tell git how to best deal with certain file formats
# To tweak to your particular needs, see http://git-scm.com/book/en/Customizing-Git-Git-Attributes
# Set the default behavior, in case people don't have core.autocrlf set.
* text=auto
# Explicitly declare text files to always be normalized and converted
# to native line endings on checkout.
*.cfg text eol=lf
*.css text eol=lf
*.fea text eol=lf
*.feax text eol=lf
*.ftml text eol=lf
*.gdl text eol=lf
*.gdh text eol=lf
*.html text eol=lf
*.htxt text eol=lf
*.json text eol=lf
*.md text eol=lf
*.py text eol=lf
*.sil text eol=lf
*.srctext text eol=lf
*.tex text eol=lf
*.txt text eol=lf
*.TXT text eol=lf
*.vtp text eol=lf
*.xdvtxt text eol=lf
*.xsl text eol=lf
*.xml text eol=lf
# Declare text files that will stay in LF (i.e. not expected to be used on Windows)
makedocs text eol=lf
maketests text eol=lf
# Declare text files that will stay in LF (i.e. not expected to be used on Windows)
*.sh eol=lf
# Keep these as LF because vfb2ufo generates LF, even on Windows:
*.plist text eol=lf
# Declare all files that are truly binary and should not be modified.
*.png binary
*.jpg binary
*.vfb binary
*.ttf binary
*.pdf binary
*.PDF binary
*.docx binary
# other document formats
*.pdf diff=astextplain
*.PDF diff=astextplain
*.doc diff=astextplain
*.DOC diff=astextplain
*.docx diff=astextplain
*.DOCX diff=astextplain