Skip to content

Commit 7533127

Browse files
committed
🎪 Added .gitattributes & .gitignore files
0 parents  commit 7533127

File tree

2 files changed

+50
-0
lines changed

2 files changed

+50
-0
lines changed

.gitattributes

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto
3+
4+
# Custom for Visual Studio
5+
*.cs diff=csharp
6+
7+
# Standard to msysgit
8+
*.doc diff=astextplain
9+
*.DOC diff=astextplain
10+
*.docx diff=astextplain
11+
*.DOCX diff=astextplain
12+
*.dot diff=astextplain
13+
*.DOT diff=astextplain
14+
*.pdf diff=astextplain
15+
*.PDF diff=astextplain
16+
*.rtf diff=astextplain
17+
*.RTF diff=astextplain

.gitignore

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
composer.phar
2+
/vendor/
3+
4+
# Commit your application's lock file http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file
5+
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
6+
# composer.lock
7+
8+
# =========================
9+
# Operating System Files
10+
# =========================
11+
12+
# Windows
13+
# =========================
14+
15+
# Windows thumbnail cache files
16+
Thumbs.db
17+
ehthumbs.db
18+
ehthumbs_vista.db
19+
20+
# Folder config file
21+
Desktop.ini
22+
23+
# Recycle Bin used on file shares
24+
$RECYCLE.BIN/
25+
26+
# Windows Installer files
27+
*.cab
28+
*.msi
29+
*.msm
30+
*.msp
31+
32+
# Windows shortcuts
33+
*.lnk

0 commit comments

Comments
 (0)