-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitattributes
116 lines (104 loc) · 1.62 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
# See: https://help.github.com/articles/dealing-with-line-endings/
# Set the default behavior, in case people don't have core.autocrlf set.
* text=auto
# Explicitly declare text files that are always converted
# Code files
*.java text diff=java
*.kt text
*.scala text
*.sbt text
*.c text diff=cpp
*.cpp text diff=cpp
*.c++ text diff=cpp
*.h text diff=cpp
*.hpp text diff=cpp
*.h++ text diff=cpp
*.handlebars text
*.cs text diff=csharp
*.ddl text
*.sql text
*.rb text diff=ruby
*.coffee text
*.py diff=python
*.php diff=php
*.php3 diff=php
# Scripts
*.sh text
*.bat text
*.launch text
*.patch text
*.GET text
*.get text
# HTML, JS, CSS
*.html text diff=html
*.less text
*.htm text diff=html
*.css text
*.js text
*.json text
*.htc text
# Text, properties, xml
*.txt text
*.log text
*.md text
*.markdown text
*.readme text
*.README text
*.conf text
*.properties text
*.settings text
*.xml text
*.xsd text
*.dtd text
*.ent text
*.resx text
*.wsdd text
*.wsdl text
*.xaml text
*.csv text
*.classpath text
*.project text
*.info text
*.jmx text
*.jtl text
*.tmpl text
*.lst text
*.prefs text
# Denote all files that are truly binary and should not be modified.
# Images
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.xcf binary
*.mp4 binary
*.psd binary
*.svg binary
*.swf binary
*.wav binary
*.mpg binary
*.webm binary
*.wmv binary
# Documents
*.pdf binary
*.doc binary
*.dot binary
*.odt binary
*.xls binary
*.xlsx binary
*.csproj binary
# Archives
*.7z binary
*.zip binary
*.gz binary
*.tgz binary
*.tar binary
*.tar.gz binary
*.jar binary
*.war binary
*.pack binary
# Cache, class, etc.
*.cache binary
*.class binary
*.bin binary