File tree Expand file tree Collapse file tree 1 file changed +41
-0
lines changed
Expand file tree Collapse file tree 1 file changed +41
-0
lines changed Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments