-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
64 lines (60 loc) · 1.27 KB
/
.gitattributes
File metadata and controls
64 lines (60 loc) · 1.27 KB
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
58
59
60
61
62
63
64
#
# This file overrides the Git automatic line-ending normalization when core.autocrlf=true
#
# Preferably in a heterogeneous environment (Windows, Mac, Unix) developers will set core.autocrlf=false
# so that version control will leave line endings unchanged.
# (eg. build on Windows, deploy to Unix - do not want windows line-endings on shell scripts).
# But can't guarantee that, so use this file.
# git config --list
# git config --global core.autocrlf false
#
# Avoid using wildcard '* text auto' - causes all manner of problems.
#
* -text
*.bat text eol=crlf
*.cmd text eol=crlf
*.cgi text eol=lf
*.conf text eol=lf
*.css text eol=lf
*.dtd text eol=lf
*.ftl text eol=lf
*.ipl text eol=lf
*.java text eol=lf
*.js text eol=lf
*.json text eol=lf
*.md text eol=lf
*.pl text eol=lf
*.pm text eol=lf
*.properties text eol=lf
*.py text eol=lf
*.sass text eol=lf
*.scss text eol=lf
*.sh text eol=lf
*.tst text eol=lf
*.txt text eol=lf
*.xml text eol=lf
*.xsd text eol=lf
*.xsl text eol=lf
# Binaries
*.class binary
*.dat binary
*.db binary
*.dll binary
*.eot binary
*.exe binary
*.gif binary
*.icns binary
*.ico binary
*.jar binary
*.jks binary
*.jpg binary
*.pdb binary
*.pdf binary
*.png binary
*.PNG binary
*.ttf binary
*.war binary
*.woff binary
*.woff2 binary
*.zip binary
# EoF