-
Notifications
You must be signed in to change notification settings - Fork 97
/
.gitattributes
52 lines (46 loc) · 1.15 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
# Handle line endings per <http://help.github.com/line-endings/>
# Set the default behavior, in case `core.autocrlf` isn’t set
# (auto-detect text files and perform LF normalization):
* text=auto
# Normalize text files & convert to native line endings on checkout:
*.css text
*.dita* text
*.dtd text
*.ent text
*.htm text diff=html
*.html text diff=html
*.js text
*.less text
*.md text
*.mod text
*.properties text
*.sass text
*.scss text
*.txt text
*.xml text
*.xsd text
*.xsl text
# Files that should always have Windows CRLF line endings on checkout:
*.bat text eol=crlf
*.cmd text eol=crlf
# Files that should always have UNIX LF line endings on checkout:
*.sh text eol=lf
# These files are binary and should be left untouched:
*.ico binary
*.jpeg binary
*.jpg binary
*.png binary
# Fonts
*.eot binary
*.otf binary
*.ttf binary
*.woff binary
# Diff text content of Word files & similar formats as plain text:
*.doc diff=astextplain
*.DOC diff=astextplain
*.docx diff=astextplain
*.DOCX diff=astextplain
*.dot diff=astextplain
*.DOT diff=astextplain
*.rtf diff=astextplain
*.RTF diff=astextplain