Skip to content

Commit 189b194

Browse files
committed
🎉 Added .gitattributes & .gitignore files
0 parents  commit 189b194

File tree

2 files changed

+107
-0
lines changed

2 files changed

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

+90
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
# Built application files
2+
*.apk
3+
*.ap_
4+
5+
# Files for the Dalvik VM
6+
*.dex
7+
8+
# Java class files
9+
*.class
10+
11+
# Generated files
12+
bin/
13+
gen/
14+
out/
15+
16+
# Gradle files
17+
.gradle/
18+
build/
19+
20+
# Local configuration file (sdk path, etc)
21+
local.properties
22+
23+
# Proguard folder generated by Eclipse
24+
proguard/
25+
26+
# Log Files
27+
*.log
28+
29+
# Android Studio Navigation editor temp files
30+
.navigation/
31+
32+
# Android Studio captures folder
33+
captures/
34+
35+
# Intellij
36+
*.iml
37+
38+
# Keystore files
39+
*.jks
40+
41+
# =========================
42+
# Operating System Files
43+
# =========================
44+
45+
# OSX
46+
# =========================
47+
48+
.DS_Store
49+
.AppleDouble
50+
.LSOverride
51+
52+
# Thumbnails
53+
._*
54+
55+
# Files that might appear in the root of a volume
56+
.DocumentRevisions-V100
57+
.fseventsd
58+
.Spotlight-V100
59+
.TemporaryItems
60+
.Trashes
61+
.VolumeIcon.icns
62+
63+
# Directories potentially created on remote AFP share
64+
.AppleDB
65+
.AppleDesktop
66+
Network Trash Folder
67+
Temporary Items
68+
.apdisk
69+
70+
# Windows
71+
# =========================
72+
73+
# Windows image file caches
74+
Thumbs.db
75+
ehthumbs.db
76+
77+
# Folder config file
78+
Desktop.ini
79+
80+
# Recycle Bin used on file shares
81+
$RECYCLE.BIN/
82+
83+
# Windows Installer files
84+
*.cab
85+
*.msi
86+
*.msm
87+
*.msp
88+
89+
# Windows shortcuts
90+
*.lnk

0 commit comments

Comments
 (0)