Skip to content

Commit 16041db

Browse files
committed
Configure GIT
1 parent d603cab commit 16041db

File tree

2 files changed

+36
-0
lines changed

2 files changed

+36
-0
lines changed

.gitattributes

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Set the default behavior, in case people don't have core.autocrlf set.
2+
* text=auto
3+
* eol=lf
4+
5+
# Denote all files that are truly binary and should not be modified.
6+
*.png binary
7+
*.jpg binary
8+
9+
# Ignore tests from export
10+
/tests export-ignore
11+
phpunit.xml.dist export-ignore
12+
13+
# Ignore composer dependencies from export
14+
/vendor export-ignore
15+
/composer.lock
16+
17+
# Ignore git configurations from export
18+
.gitattributes export-ignore
19+
.gitignore export-ignore
20+
21+
# Ignore CI configurations from export
22+
.scrutinizer.yml export-ignore
23+
.travis.yml export-ignore
24+
.codeclimate.yml export-ignore
25+
.styleci.yml export-ignore

.gitignore

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Setting up GIt to ignore the indexing of these files and directories.
2+
# Keep this file clean, add only files and folders directly pertinent to the project.
3+
# DO NOT add the local environment files, like OS temp files or IDE files.
4+
# For local environment files use global ignore.
5+
6+
# Composer
7+
vendor/
8+
composer.lock
9+
10+
# PHPUnit
11+
phpunit.xml

0 commit comments

Comments
 (0)