Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 793a3d6

Browse files
author
Marek Kulik
committedApr 10, 2016
🎪 Added .gitattributes & .gitignore files
0 parents  commit 793a3d6

File tree

2 files changed

+96
-0
lines changed

2 files changed

+96
-0
lines changed
 

‎.gitattributes

+17
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

+79
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
6+
# Runtime data
7+
pids
8+
*.pid
9+
*.seed
10+
11+
# Directory for instrumented libs generated by jscoverage/JSCover
12+
lib-cov
13+
14+
# Coverage directory used by tools like istanbul
15+
coverage
16+
17+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
18+
.grunt
19+
20+
# node-waf configuration
21+
.lock-wscript
22+
23+
# Compiled binary addons (http://nodejs.org/api/addons.html)
24+
build/Release
25+
26+
# Dependency directory
27+
# https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git
28+
node_modules
29+
30+
# =========================
31+
# Operating System Files
32+
# =========================
33+
34+
# OSX
35+
# =========================
36+
37+
.DS_Store
38+
.AppleDouble
39+
.LSOverride
40+
41+
# Thumbnails
42+
._*
43+
44+
# Files that might appear in the root of a volume
45+
.DocumentRevisions-V100
46+
.fseventsd
47+
.Spotlight-V100
48+
.TemporaryItems
49+
.Trashes
50+
.VolumeIcon.icns
51+
52+
# Directories potentially created on remote AFP share
53+
.AppleDB
54+
.AppleDesktop
55+
Network Trash Folder
56+
Temporary Items
57+
.apdisk
58+
59+
# Windows
60+
# =========================
61+
62+
# Windows image file caches
63+
Thumbs.db
64+
ehthumbs.db
65+
66+
# Folder config file
67+
Desktop.ini
68+
69+
# Recycle Bin used on file shares
70+
$RECYCLE.BIN/
71+
72+
# Windows Installer files
73+
*.cab
74+
*.msi
75+
*.msm
76+
*.msp
77+
78+
# Windows shortcuts
79+
*.lnk

0 commit comments

Comments
 (0)
Please sign in to comment.