-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitattributes
93 lines (89 loc) · 2.04 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# References:
# - http://timclem.wordpress.com/2012/03/01/mind-the-end-of-your-line/
# - https://help.github.com/articles/dealing-with-line-endings
# - http://davidlaing.com/2012/09/19/customise-your-gitattributes-to-become-a-git-ninja/
#
# Set default behaviour, in case users don't have core.autocrlf set
#
* text=auto
#
# These files are text and should be normalized (convert crlf => lf)
#
.gitignore text
.gitattributes text
*.bat text eol=crlf
*.crt text
*.css text
*.csv text
*.ddl text
*.dtd text
*.gpml text
*.hbs text
*.htm text diff=html
*.html text diff=html
*.iml text
*.ini text
*.j2 text
*.java text diff=java
*.js text diff=javascript
*.jsf text
*.json text
*.jsp text
*.jspf text
*.less text
*.log text
*.md text
*.markdown text
*.obo text
*.owl text
*.pl text diff=perl
*.pem text
*.pm text diff=perl
*.properties text
*.py text diff=python
*.rb text diff=ruby
*.scss text
*.sh text eol=lf
*.sql text
*.tag text
*.tsv text
*.txt text
*.vm text
*.xml text
*.xsd text
*.xsl text
*.yml text
#
# Binary files should be left alone (binary is a macro for -text -diff)
#
*.ai binary
*.bmp binary
*.class binary
*.dll binary
*.doc binary
*.docx binary
*.exe binary
*.eot binary
*.gif binary
*.gz binary
*.ico binary
*.icns binary
*.jar binary
*.jnilib binary
*.jpeg binary
*.jpg binary
*.pdf binary
*.png binary
*.ppt binary
*.pptx binary
*.psd binary
*.so binary
*.svg binary
*.swf binary
*.tar binary
*.tgz binary
*.ttf binary
*.woff binary
*.xls binary
*.xlsx binary
*.zip binary