Skip to content

Commit b92c936

Browse files
committed
👾 Added .gitattributes & .gitignore files
0 parents  commit b92c936

File tree

2 files changed

+74
-0
lines changed

2 files changed

+74
-0
lines changed

.gitattributes

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto
3+
4+
# Custom for Visual Studio
5+
*.cs diff=csharp
6+
*.sln merge=union
7+
*.csproj merge=union
8+
*.vbproj merge=union
9+
*.fsproj merge=union
10+
*.dbproj merge=union
11+
12+
# Standard to msysgit
13+
*.doc diff=astextplain
14+
*.DOC diff=astextplain
15+
*.docx diff=astextplain
16+
*.DOCX diff=astextplain
17+
*.dot diff=astextplain
18+
*.DOT diff=astextplain
19+
*.pdf diff=astextplain
20+
*.PDF diff=astextplain
21+
*.rtf diff=astextplain
22+
*.RTF diff=astextplain

.gitignore

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
*.class
2+
3+
# Mobile Tools for Java (J2ME)
4+
.mtj.tmp/
5+
6+
# Package Files #
7+
*.jar
8+
*.war
9+
*.ear
10+
11+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
12+
hs_err_pid*
13+
14+
# =========================
15+
# Operating System Files
16+
# =========================
17+
18+
# OSX
19+
# =========================
20+
21+
.DS_Store
22+
.AppleDouble
23+
.LSOverride
24+
25+
# Icon must ends with two \r.
26+
Icon
27+
28+
# Thumbnails
29+
._*
30+
31+
# Files that might appear on external disk
32+
.Spotlight-V100
33+
.Trashes
34+
35+
# Windows
36+
# =========================
37+
38+
# Windows image file caches
39+
Thumbs.db
40+
ehthumbs.db
41+
42+
# Folder config file
43+
Desktop.ini
44+
45+
# Recycle Bin used on file shares
46+
$RECYCLE.BIN/
47+
48+
# Windows Installer files
49+
*.cab
50+
*.msi
51+
*.msm
52+
*.msp

0 commit comments

Comments
 (0)