-
Notifications
You must be signed in to change notification settings - Fork 220
/
.gitattributes
76 lines (65 loc) · 1.91 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
# Set default behaviour, in case users don't have core.autocrlf set.
* text=auto encoding=UTF-8
# Java sources
*.java text diff=java encoding=UTF-8
# These files are text and should be normalized (Convert crlf => lf)
*.css text diff=css encoding=UTF-8
*.df text encoding=UTF-8
*.htm text diff=html encoding=UTF-8
*.html text diff=html encoding=UTF-8
*.js text encoding=UTF-8
*.jsp text encoding=UTF-8
*.jspf text encoding=UTF-8
*.jspx text encoding=UTF-8
*.properties text encoding=UTF-8
*.xml text encoding=UTF-8
*.txt text encoding=UTF-8
*.md text encoding=UTF-8
*.csv text
*.tsv text
*.sql text encoding=UTF-8
*.py text diff=python encoding=UTF-8
*.py3 text diff=python encoding=UTF-8
# Denote all files that are truly binary and should not be modified.
# Graphics
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.tif binary
*.tiff binary
*.ico binary
*.svg binary
*.eps binary
*.data binary
*.dll binary
*.so binary
*.exe binary
# Archives
*.7z binary
*.gz binary
*.tar binary
*.tgz binary
*.zip binary
# Other binaries
*.class binary
*.dll binary
*.ear binary
*.jar binary
*.so binary
*.war binary
# Scripts
*.bash text eol=lf
*.fish text eol=lf
*.sh text eol=lf
# These are explicitly windows files and should use crlf
*.bat text eol=crlf
*.cmd text eol=crlf
*.ps1 text eol=crlf
# Text files where line endings should be preserved
*.patch -text
#
# Exclude files from exporting
#
.gitattributes export-ignore
.gitignore export-ignore