forked from bcit-ci/CodeIgniter
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.gitattributes
More file actions
56 lines (48 loc) · 1.58 KB
/
Copy path.gitattributes
File metadata and controls
56 lines (48 loc) · 1.58 KB
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
56
# Line endings
#
# Checked out with LF everywhere, whatever core.autocrlf says locally.
#
# Without this, a Windows clone with core.autocrlf=true gets CRLF source, and
# fifteen tests fail that pass everywhere else. They compare helper output
# against a literal multi-line string written in the test file: the helpers
# build their output from "\n" escapes, so they always emit LF, while the
# expected value picks up whatever the file on disk uses. CRLF checkout, CRLF
# expectation, LF actual, failure - in Form_helper_test, Html_helper_test and
# Calendar_test.
#
# This only affects what lands in the working tree. Repository content is
# unchanged, and PHP does not care either way, so nothing downstream breaks.
* text=auto eol=lf
# Windows-only files keep their native endings
*.bat text eol=crlf
# Binaries git should not touch at all
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.woff binary
*.woff2 binary
*.ttf binary
*.eot binary
*.pdf binary
*.zip binary
*.gz binary
# This file tells which files and directories should be ignored and
# NOT downloaded when using composer to pull down a project with
# the --prefer-dist option selected. Used to remove development
# specific files so user has a clean download.
# git files
.gitattributes export-ignore
# .gitignore
# helper config files
.travis.yml export-ignore
phpdoc.dist.xml export-ignore
# Misc other files
readme.rst
# They don't want all of our tests...
tests/codeigniter/ export-ignore
tests/travis/ export-ignore
# User Guide source files and compiled files
user_guide_src export-ignore
user_guide export-ignore