-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.gitattributes
38 lines (34 loc) · 987 Bytes
/
.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
# Autodetect text files, normalize to LF on commit
* text=auto
# Explicitly define files which should be LF when checked out and on commit
*.md text eol=lf
*.sh text eol=lf
*.rb text eol=lf diff=ruby
*.php text eol=lf diff=php
*.yml text eol=lf
*.sql text eol=lf
*.xml text eol=lf
*.xsd text eol=lf
*.css text eol=lf
*.js text eol=lf
*.pem text eol=lf
LICENSE text eol=lf
README text eol=lf
# Declare files that will always have CRLF line endings on checkout (still stored LF)
*.bat text eol=crlf
# Denote all files that are truly binary and should not be modified.
*.png binary
*.jpg binary
*.gif binary
*.ttf binary
*.swf binary
*.zip binary
*.sqlite binary
# Ignore paths that should not be included in an archive (eg for a distribution version)
/test export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore
/.travis.yml export-ignore
/CHANGELOG.md export-ignore
/CONTRIBUTING.md export-ignore
/phpunit.xml export-ignore