Skip to content

Commit 2259c73

Browse files
committed
🔧 Initial git environment setup
1 parent bacb83c commit 2259c73

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

.gitattributes

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
#
2+
# Exclude these files from release archives.
3+
# This will also make them unavailable when using Composer with `--prefer-dist`.
4+
# If you develop for this repo using Composer, use `--prefer-source`.
5+
# https://www.reddit.com/r/PHP/comments/2jzp6k/i_dont_need_your_tests_in_my_production
6+
# https://blog.madewithlove.be/post/gitattributes/
7+
#
8+
/.gitattributes export-ignore
9+
/.gitignore export-ignore
10+
/.travis.yml export-ignore
11+
12+
#
13+
# Auto detect text files and perform LF normalization
14+
# http://davidlaing.com/2012/09/19/customise-your-gitattributes-to-become-a-git-ninja/
15+
#
16+
* text=auto
17+
18+
#
19+
# The above will handle all files NOT found below
20+
#
21+
*.md text
22+
*.php text
23+
*.inc text

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
vendor/
2+
composer.lock

0 commit comments

Comments
 (0)