Skip to content

Commit 9744b84

Browse files
author
Alexander Gude
committed
Add .gitignore
1 parent cd35d68 commit 9744b84

File tree

1 file changed

+197
-0
lines changed

1 file changed

+197
-0
lines changed

.gitignore

Lines changed: 197 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,197 @@
1+
#Binary and Image
2+
*.exe
3+
*.png
4+
*.jpg
5+
*.gif
6+
*.bmp
7+
*.pdf
8+
*.ps
9+
*.jpeg
10+
11+
#Root
12+
*.root
13+
14+
#Network File System
15+
.nfs*
16+
17+
##Github EMACS Ignore
18+
*~
19+
\#*\#
20+
/.emacs.desktop
21+
/.emacs.desktop.lock
22+
.elc
23+
auto-save-list
24+
tramp
25+
.\#*
26+
27+
# Org-mode
28+
.org-id-locations
29+
*_archive
30+
31+
##Github VIM Ignore
32+
*.s[a-w][a-z]
33+
*.un~
34+
Session.vim
35+
.netrwhist
36+
*~
37+
38+
##Github SVN Ignore
39+
.svn/
40+
41+
##Github CVS Ignore
42+
/CVS/*
43+
*/CVS/*
44+
.cvsignore
45+
*/.cvsignore
46+
47+
##Github Linux Ignore
48+
.*
49+
!.gitignore
50+
*~
51+
52+
##Github OSX Ignore
53+
.DS_Store
54+
.AppleDouble
55+
.LSOverride
56+
Icon
57+
58+
# Thumbnails
59+
._*
60+
61+
# Files that might appear on external disk
62+
.Spotlight-V100
63+
.Trashes
64+
65+
##Github Archives Ignore
66+
# It's better to unpack these files and commit the raw source because
67+
# git has its own built in compression methods.
68+
*.7z
69+
*.jar
70+
*.rar
71+
*.zip
72+
*.gz
73+
*.bzip
74+
*.bz2
75+
*.xz
76+
*.lzma
77+
78+
#packing-only formats
79+
*.iso
80+
*.tar
81+
82+
#package management formats
83+
*.dmg
84+
*.xpi
85+
*.gem
86+
*.egg
87+
*.deb
88+
*.rpm
89+
90+
##Github Python Ignore
91+
*.py[cod]
92+
93+
# C extensions
94+
*.so
95+
96+
# Packages
97+
*.egg
98+
*.egg-info
99+
dist
100+
build
101+
eggs
102+
parts
103+
bin
104+
var
105+
sdist
106+
develop-eggs
107+
.installed.cfg
108+
lib
109+
lib64
110+
__pycache__
111+
112+
# Installer logs
113+
pip-log.txt
114+
115+
# Unit test / coverage reports
116+
.coverage
117+
.tox
118+
nosetests.xml
119+
120+
# Translations
121+
*.mo
122+
123+
# Mr Developer
124+
.mr.developer.cfg
125+
.project
126+
.pydevproject
127+
128+
##Github C++ ignore
129+
# Compiled Object files
130+
*.slo
131+
*.lo
132+
*.o
133+
134+
# Dependency Files
135+
*.d
136+
137+
# Compiled Dynamic libraries
138+
*.so
139+
*.dylib
140+
141+
# Compiled Static libraries
142+
*.lai
143+
*.la
144+
*.a
145+
146+
##Github LaTeX Ignore
147+
*.acn
148+
*.acr
149+
*.alg
150+
*.aux
151+
*.bbl
152+
*.blg
153+
*.dvi
154+
*.fdb_latexmk
155+
*.glg
156+
*.glo
157+
*.gls
158+
*.idx
159+
*.ilg
160+
*.ind
161+
*.ist
162+
*.lof
163+
*.log
164+
*.lot
165+
*.maf
166+
*.mtc
167+
*.mtc0
168+
*.nav
169+
*.nlo
170+
*.out
171+
*.pdfsync
172+
*.ps
173+
*.snm
174+
*.synctex.gz
175+
*.toc
176+
*.vrb
177+
*.xdy
178+
*.tdo
179+
180+
##Github Perl Ignore
181+
blib/
182+
.build/
183+
_build/
184+
cover_db/
185+
inc/
186+
Build
187+
!Build/
188+
Build.bat
189+
.last_cover_stats
190+
Makefile
191+
Makefile.old
192+
MANIFEST.bak
193+
META.yml
194+
MYMETA.yml
195+
nytprof.out
196+
pm_to_blib
197+

0 commit comments

Comments
 (0)