Skip to content

Commit 10e7a73

Browse files
committed
Merge pull request #357 from bcrowe/attributes
Add gitattributes file
2 parents f6de723 + d04b74f commit 10e7a73

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed

.gitattributes

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# Define the line ending behavior of the different file extensions
2+
# Set default behaviour, in case users don't have core.autocrlf set.
3+
* text=auto
4+
* text eol=lf
5+
6+
# Explicitly declare text files we want to always be normalized and converted
7+
# to native line endings on checkout.
8+
*.php text
9+
*.default text
10+
*.ctp text
11+
*.md text
12+
*.po text
13+
*.js text
14+
*.css text
15+
*.ini text
16+
*.txt text
17+
*.xml text
18+
19+
# Declare files that will always have CRLF line endings on checkout.
20+
*.bat eol=crlf
21+
22+
# Declare files that will always have LF line endings on checkout.
23+
*.pem eol=lf
24+
25+
# Denote all files that are truly binary and should not be modified.
26+
*.png binary
27+
*.jpg binary
28+
*.gif binary
29+
*.ico binary
30+
*.mo binary
31+
32+
# Remove files for archives generated using `git archive`
33+
appveyor.yml export-ignore
34+
CONTRIBUTING.md export-ignore
35+
.editorconfig export-ignore
36+
.gitattributes export-ignore
37+
.gitignore export-ignore
38+
Makefile export-ignore
39+
phpunit.xml.dist export-ignore
40+
.travis.yml export-ignore
41+
/tests export-ignore

0 commit comments

Comments
 (0)