Skip to content

Commit ac21f12

Browse files
committed
:neckbeard: Added .gitattributes & .gitignore files
0 parents  commit ac21f12

File tree

2 files changed

+100
-0
lines changed

2 files changed

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

+83
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
# Ignore list for Eagle, a PCB layout tool
2+
3+
# Backup files
4+
*.s#?
5+
*.b#?
6+
*.l#?
7+
8+
# Eagle project file
9+
# It contains a serial number and references to the file structure
10+
# on your computer.
11+
# comment the following line if you want to have your project file included.
12+
eagle.epf
13+
14+
# CAM files
15+
*.$$$
16+
*.cmp
17+
*.ly2
18+
*.l15
19+
*.sol
20+
*.plc
21+
*.stc
22+
*.sts
23+
*.crc
24+
*.crs
25+
26+
*.dri
27+
*.drl
28+
*.gpi
29+
*.pls
30+
31+
*.drd
32+
*.drd.*
33+
34+
*.info
35+
36+
*.eps
37+
38+
# =========================
39+
# Operating System Files
40+
# =========================
41+
42+
# OSX
43+
# =========================
44+
45+
.DS_Store
46+
.AppleDouble
47+
.LSOverride
48+
49+
# Thumbnails
50+
._*
51+
52+
# Files that might appear on external disk
53+
.Spotlight-V100
54+
.Trashes
55+
56+
# Directories potentially created on remote AFP share
57+
.AppleDB
58+
.AppleDesktop
59+
Network Trash Folder
60+
Temporary Items
61+
.apdisk
62+
63+
# Windows
64+
# =========================
65+
66+
# Windows image file caches
67+
Thumbs.db
68+
ehthumbs.db
69+
70+
# Folder config file
71+
Desktop.ini
72+
73+
# Recycle Bin used on file shares
74+
$RECYCLE.BIN/
75+
76+
# Windows Installer files
77+
*.cab
78+
*.msi
79+
*.msm
80+
*.msp
81+
82+
# Windows shortcuts
83+
*.lnk

0 commit comments

Comments
 (0)