-
Notifications
You must be signed in to change notification settings - Fork 360
/
.gitattributes
35 lines (32 loc) · 1.09 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
# NOTE: see https://help.github.com/en/github/using-git/configuring-git-to-handle-line-endings#refreshing-a-repository-after-changing-line-endings
# regarding the need to re-normalize the files after changing this one
# Handle line endings automatically for files detected as text
# and leave all files detected as binary untouched.
* text=auto
*.txt text eol=lf
*.sh text eol=lf
*.properties text eol=lf
*.groovy text eol=lf
*.scala text eol=lf
*.java text eol=lf
*.pl text eol=lf
*.md text eol=lf
*.awk text eol=lf
*.xml text eol=lf
*.html text eol=lf
*.yaml text eol=lf
*.json text eol=lf
*.py text eol=lf
*.js text eol=lf
*.bat text eol=crlf
*.vbs text eol=crlf
# These files are binary and should be left untouched
# (binary is macro for -text -diff)
*.jpg binary
*.gif binary
*.png binary
*.class binary
*.pdf binary
*.jar binary
*.zip binary
*.war binary