-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
.gitattributes
66 lines (63 loc) · 1.45 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
# Set default behaviour, in case users don't have core.autocrlf set.
* text=auto
# Explicitly declare text files we want to always be normalized and converted to native line endings on checkout.
# These files are text and should be normalized (Convert crlf => lf)
*.gitignore text
*.gitattributes text
*.gitmodules text
*.editorconfig text
*.sh text
*.md text
*.info text
*.txt text
*.json text
## Project specs
*.java text
*.gradle text
*.properties text
# Denote all files that are truly binary and should not be modified.
# (binary is a macro for -text -diff)
*.jpg binary
*.jpeg binary
*.jpe binary
*.jif binary
*.jfif binary
*.jfi binary
*.png binary
*.gif binary
*.webp binary
*.tiff binary
*.tif binary
*.psd binary
*.raw binary
*.arw binary
*.cr2 binary
*.nrw binary
*.k25 binary
*.bmp binary
*.dib binary
*.heif binary
*.heic binary
*.ind binary
*.indd binary
*.indt binary
*.jp2 binary
*.j2k binary
*.jpf binary
*.jpx binary
*.jpm binary
*.mj2 binary
*.svg binary
*.svgz binary
*.ai binary
*.eps binary
*.pdf binary
## Project specs
*.jar binary
# Make sure Windows batch files preserve CR/LF line endings, otherwise they may not be able to execute. Windows
# batch files require a CR/LF for labels to work properly, otherwise they may fail when labels straddle 512-byte
# block boundaries. This is important when files are downloaded through a zip archive that was authored on a
# Linux machine (the default behavior on GitHub)
*.bat eol=crlf
*.cmd eol=crlf
*.ps1 eol=crlf