Skip to content

Commit e9749c8

Browse files
committed
Adding more comprehensive gitignore
1 parent 17b85f5 commit e9749c8

File tree

1 file changed

+80
-0
lines changed

1 file changed

+80
-0
lines changed

.gitignore

+80
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
# Compiled source #
2+
###################
3+
*.com
4+
*.class
5+
*.dll
6+
*.exe
7+
*.o
8+
*.so
9+
10+
# Packages #
11+
############
12+
# it's better to unpack these files and commit the raw source
13+
# git has its own built in compression methods
14+
*.7z
15+
*.dmg
16+
*.gz
17+
*.iso
18+
*.jar
19+
*.rar
20+
*.tar
21+
*.zip
22+
23+
# Logs and databases #
24+
######################
25+
*.log
26+
*.sql
27+
*.sqlite
28+
29+
# OS generated files #
30+
######################
31+
.DS_Store
32+
.DS_Store?
33+
._*
34+
.Spotlight-V100
35+
.Trashes
36+
ehthumbs.db
37+
Thumbs.db
38+
39+
# Media #
40+
#########
41+
*.mx20
42+
*.mx22
43+
*.png
44+
*.pdf
45+
*.wav
46+
*.mp3
47+
*.mov
48+
*.mp4
49+
*.gif
50+
*.jpg
51+
*.jpeg
52+
*.docx
53+
*.pptx
54+
*.xlsx
55+
56+
# LaTeX #
57+
#########
58+
*.fls
59+
*.aux
60+
*.bbl
61+
*.bcf
62+
*.blg
63+
*.xml
64+
*.fdb_latexmk
65+
*.out
66+
*.xdv
67+
*.ent-a
68+
*.ent-b
69+
*.ent-c
70+
*.lof
71+
*.lot
72+
*.toc
73+
*.exc
74+
*.synctex(busy)
75+
*.glo
76+
*.ist
77+
78+
# Other #
79+
#########
80+

0 commit comments

Comments
 (0)