blob: 5da8054b7b0f501fe8d2b8c09744211a7dd15cbe (
plain)
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
|
# Set default behaviour, in case users don't have core.autorclf set.
* text=auto
# Explicitly set some EOL styles and preferred diff style
*.pas text diff=pascal
*.lpr text diff=pascal
*.pp text diff=pascal
*.inc text diff=pascal
*.txt text
*.xpm text
*.ods diff=odf
*.odt diff=odf
*.odp diff=odf
# declare files that must always have specific EOL style
*.dez text eol=crlf
# True binary files that should not be modify (just for safety sake)
*.jpg binary
*.png binary
*.bmp binary
*.inf binary
*.INF binary
*.zip binary
*.res binary
*.tar.gz binary
*.wav binary
|