-
Notifications
You must be signed in to change notification settings - Fork 21
/
.gitattributes
55 lines (50 loc) · 1.19 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
# Define the line ending behavior of the different file extensions
# Set default behaviour, in case users don't have core.autocrlf set.
* text=auto
* text eol=lf
# Explicitly declare text files we want to always be normalized and converted
# to native line endings on checkout.
*.php text
*.php.sample text
*.tpl text
*.default text
*.ctp text
*.js text
*.css text
*.html text
*.xml text
*.sql text
*.po text
*.md text
*.ini text
*.properties text
*.txt text
*.yml text
.htaccess text
# Declare files that will always have CRLF line endings on checkout.
*.bat eol=crlf
# Declare files that will always have LF line endings on checkout.
*.pem eol=lf
# Denote all files that are truly binary and should not be modified.
*.png binary
*.jpg binary
*.gif binary
*.svg binary
*.ttf binary
*.swf binary
*.ico binary
*.tar binary
*.mo binary
*.pdf binary
*.phar binary
# Remove files for archives generated using `git archive`
.github export-ignore
plugins/BEdita/API/postman export-ignore
plugins/BEdita/API/spec export-ignore
tests export-ignore
.editorconfig export-ignore
.gitattributes export-ignore
.gitignore export-ignore
.scrutinizer.yml export-ignore
.travis.yml export-ignore
phpunit.xml.dist export-ignore