-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitattributes
38 lines (34 loc) · 1.08 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
# IMPORTANT: Read http://timclem.wordpress.com/2012/03/01/mind-the-end-of-your-line/ before you consider messing with this file
# Set all files matching the filter to be converted (CRLF to LF) if those files are determined by Git to be text and not binary.
# This relies on Git<92>s built in binary detection heuristics.
* text=auto
# Explicitly declare what should always be text files (with line feed normlization)
*.cfg text
*.css text
*.csv text
*.dtd text
*.html text
*.java text
*.js text
*.jsm text
*.json text
*.properties text
*.textile text
*.txt text
*.xml text
*.xsd text
*.xsl text
*.xul text
# Explicitly declare what should always be text files, but do not change line feeds
*.bat eol=crlf
*.cmd eol=crlf
*.sh eol=lf
*.sql eol=lf
# Denote all files that are truly binary and should not be modified.
# (binary is a macro for -text -diff)
*.gif binary
*.gz binary
*.jpg binary
*.png binary
*.tgz binary
*.zip binary