Skip to main content
summaryrefslogtreecommitdiffstats
blob: 074ab15d6250c19f6af41bd1d8205dd3ddbf144d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# https://help.github.com/articles/dealing-with-line-endings/
# https://git-scm.com/book/en/v2/Customizing-Git-Git-Attributes#Merge-Strategies

# Set the default behavior, in case people don't have core.autocrlf set.
* text=auto

# Denote all files that are truly binary and should not be modified.
*.xtextbin 	binary
*.pdf 		binary
*.zip		binary
*.class         binary
*.dll           binary
*.ear           binary
*.gif           binary
*.ico           binary
*.jar           binary
*.jpg           binary
*.jpeg          binary
*.png           binary
*.so            binary
*.war           binary
*.ods		binary
*.odt		binary

Back to the top