-
Notifications
You must be signed in to change notification settings - Fork 21
/
.gitattributes
66 lines (62 loc) · 1.48 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
# https://git-scm.com/docs/gitattributes
#
# A gitattributes file is a simple text file that gives attributes to path names.
# Each line in gitattributes file is of form: pattern attr1 attr2 ...
# That is, a pattern followed by an attributes list, separated by white spaces.
# When the pattern matches the path in question, the attributes listed on the line are given to the path.
# Each attribute can be in one of these states for a given path:
# FIX CRLF always when developer has not set
# Linux/Mac: git config --global core.autocrlf input
# Windows: git config --global core.autocrlf true
# Auto detect text files and perform LF normalization
* text=auto
* text eol=lf
# git objects as text for diff
# Ensure that the following files, and file name patterns are treated as a text files
*.dockerignore text
Dockerfile text
*.js text
*.json text
*.scss text
*.sh text eol=lf
*.htm text
*.html text
*.md text
*.options text
*.scss text
*.yaml text
*.yml text
*.txt text
.editorconfig text
.gitattributes text
.gitignore text
LICENSE text
# Avoid creation of unnecessary big commit objects
# For these files we do not want to see text diff for
*.ai binary
*.data binary
*.db binary
*.eot binary
*.eps binary
*.gif binary
*.jpeg binary
*.jpg binary
*.js.map* binary
*.min.* binary minified
*.mp3 binary
*.mtl binary
*.obj binary
*.otf binary
*.pdf binary
*.png binary
*.psd binary
*.so binary
*store binary
*.svg binary
*.ttf binary
*.ttc binary
*.wav binary
*.woff binary
*.woff2 binary
*.zip binary
*.xcf binary