Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

.gitignore 6.4 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
  1. # ---> Matlab
  2. ##---------------------------------------------------
  3. ## Remove autosaves generated by the Matlab editor
  4. ## We have git for backups!
  5. ##---------------------------------------------------
  6. # Windows default autosave extension
  7. *.asv
  8. # OSX / *nix default autosave extension
  9. *.m~
  10. ################################################################################
  11. # DrWatson Project Structure #
  12. ################################################################################
  13. # Folders to ignore - files may be too large, too many, etc. NOTE: EDIT IF NEEDED.
  14. data
  15. videos
  16. plots
  17. #notebooks
  18. #_research
  19. ################################################################################
  20. # Julia #
  21. ################################################################################
  22. # Files generated by invoking Julia with --code-coverage
  23. *.jl.cov
  24. *.jl.*.cov
  25. # Files generated by invoking Julia with --track-allocation
  26. *.jl.mem
  27. # System-specific files and directories generated by the BinaryProvider and
  28. # BinDeps packages.
  29. # They contain absolute paths, and so should not be committed
  30. deps/deps.jl
  31. deps/build.log
  32. deps/downloads/
  33. deps/usr/
  34. deps/src/
  35. # Build artifacts for creating documentation generated by the Documenter package
  36. docs/build/
  37. docs/site/
  38. ################################################################################
  39. # Jupyter Notebook #
  40. ################################################################################
  41. .ipynb_checkpoints
  42. */.ipynb_checkpoints/*
  43. ################################################################################
  44. # Microsoft Office #
  45. ################################################################################
  46. *.tmp
  47. # Word temporary
  48. ~$*.doc*
  49. # Word Auto Backup File
  50. Backup of *.doc*
  51. # Excel temporary
  52. ~$*.xls*
  53. # Excel Backup File
  54. *.xlk
  55. # PowerPoint temporary
  56. ~$*.ppt*
  57. ################################################################################
  58. # LaTeX #
  59. ################################################################################
  60. ## Core latex/pdflatex auxiliary files:
  61. *.aux
  62. *.lof
  63. *.log
  64. *.lot
  65. *.fls
  66. *.out
  67. *.toc
  68. *.fmt
  69. *.fot
  70. *.cb
  71. *.cb2
  72. .*.lb
  73. ## Intermediate documents:
  74. *.dvi
  75. *.xdv
  76. *-converted-to.*
  77. # these rules will exclude image files for figures, et cetera...
  78. # *.ps
  79. # *.eps
  80. # *.pdf
  81. ## Generated if empty string given at "Please type another file name for output:"
  82. .pdf
  83. ## Bibliography auxiliary files (bibtex/biblatex/biber):
  84. *.bbl
  85. *.bcf
  86. *.blg
  87. *-blx.aux
  88. *-blx.bib
  89. *.run.xml
  90. ## Build tool auxiliary files:
  91. *.fdb_latexmk
  92. *.synctex
  93. *.synctex(busy)
  94. *.synctex.gz
  95. *.synctex.gz(busy)
  96. *.pdfsync
  97. ## Build tool directories for auxiliary files
  98. # latexrun
  99. latex.out/
  100. ## Auxiliary and intermediate files from other packages:
  101. # algorithms
  102. *.alg
  103. *.loa
  104. # achemso
  105. acs-*.bib
  106. # amsthm
  107. *.thm
  108. # beamer
  109. *.nav
  110. *.pre
  111. *.snm
  112. *.vrb
  113. # changes
  114. *.soc
  115. # comment
  116. *.cut
  117. # cprotect
  118. *.cpt
  119. # elsarticle (documentclass of Elsevier journals)
  120. *.spl
  121. # endnotes
  122. *.ent
  123. # fixme
  124. *.lox
  125. # feynmf/feynmp
  126. *.mf
  127. *.mp
  128. *.t[1-9]
  129. *.t[1-9][0-9]
  130. *.tfm
  131. #(r)(e)ledmac/(r)(e)ledpar
  132. *.end
  133. *.?end
  134. *.[1-9]
  135. *.[1-9][0-9]
  136. *.[1-9][0-9][0-9]
  137. *.[1-9]R
  138. *.[1-9][0-9]R
  139. *.[1-9][0-9][0-9]R
  140. *.eledsec[1-9]
  141. *.eledsec[1-9]R
  142. *.eledsec[1-9][0-9]
  143. *.eledsec[1-9][0-9]R
  144. *.eledsec[1-9][0-9][0-9]
  145. *.eledsec[1-9][0-9][0-9]R
  146. # glossaries
  147. *.acn
  148. *.acr
  149. *.glg
  150. *.glo
  151. *.gls
  152. *.glsdefs
  153. # gnuplottex
  154. *-gnuplottex-*
  155. # gregoriotex
  156. *.gaux
  157. *.gtex
  158. # htlatex
  159. *.4ct
  160. *.4tc
  161. *.idv
  162. *.lg
  163. *.trc
  164. *.xref
  165. # hyperref
  166. *.brf
  167. # knitr
  168. *-concordance.tex
  169. # listings
  170. *.lol
  171. # luatexja-ruby
  172. *.ltjruby
  173. # makeidx
  174. *.idx
  175. *.ilg
  176. *.ind
  177. *.ist
  178. # minitoc
  179. *.maf
  180. *.mlf
  181. *.mlt
  182. *.mtc[0-9]*
  183. *.slf[0-9]*
  184. *.slt[0-9]*
  185. *.stc[0-9]*
  186. # minted
  187. _minted*
  188. *.pyg
  189. # morewrites
  190. *.mw
  191. # nomencl
  192. *.nlg
  193. *.nlo
  194. *.nls
  195. # pax
  196. *.pax
  197. # pdfpcnotes
  198. *.pdfpc
  199. # sagetex
  200. *.sagetex.sage
  201. *.sagetex.py
  202. *.sagetex.scmd
  203. # scrwfile
  204. *.wrt
  205. # sympy
  206. *.sout
  207. *.sympy
  208. sympy-plots-for-*.tex/
  209. # pdfcomment
  210. *.upa
  211. *.upb
  212. # pythontex
  213. *.pytxcode
  214. pythontex-files-*/
  215. # tcolorbox
  216. *.listing
  217. # thmtools
  218. *.loe
  219. # TikZ & PGF
  220. *.dpth
  221. *.md5
  222. *.auxlock
  223. # todonotes
  224. *.tdo
  225. # vhistory
  226. *.hst
  227. *.ver
  228. # easy-todo
  229. *.lod
  230. # xcolor
  231. *.xcp
  232. # xmpincl
  233. *.xmpi
  234. # xindy
  235. *.xdy
  236. # xypic precompiled matrices
  237. *.xyc
  238. # endfloat
  239. *.ttt
  240. *.fff
  241. # Latexian
  242. TSWLatexianTemp*
  243. ## Editors:
  244. # WinEdt
  245. *.bak
  246. *.sav
  247. # Texpad
  248. .texpadtmp
  249. # LyX
  250. *.lyx~
  251. # Kile
  252. *.backup
  253. # KBibTeX
  254. *~[0-9]*
  255. # auto folder when using emacs and auctex
  256. ./auto/*
  257. *.el
  258. # expex forward references with \gathertags
  259. *-tags.tex
  260. # standalone packages
  261. *.sta
  262. ### LaTeX Patch ###
  263. # glossaries
  264. *.glstex
  265. ################################################################################
  266. # Operating systems #
  267. ################################################################################
  268. ########################################
  269. # Linux #
  270. ########################################
  271. *~
  272. # temporary files which can be created if a process still has a handle open of
  273. # a deleted file
  274. .fuse_hidden*
  275. # KDE directory preferences
  276. .directory
  277. # Linux trash folder which might appear on any partition or disk
  278. .Trash-*
  279. # .nfs files are created when an open file is removed but is still being accessed
  280. .nfs*
  281. ########################################
  282. # macOS #
  283. ########################################
  284. # General
  285. .DS_Store
  286. .AppleDouble
  287. .LSOverride
  288. # Icon must end with two \r
  289. Icon
  290. # Thumbnails
  291. ._*
  292. # Files that might appear in the root of a volume
  293. .DocumentRevisions-V100
  294. .fseventsd
  295. .Spotlight-V100
  296. .TemporaryItems
  297. .Trashes
  298. .VolumeIcon.icns
  299. .com.apple.timemachine.donotpresent
  300. # Directories potentially created on remote AFP share
  301. .AppleDB
  302. .AppleDesktop
  303. Network Trash Folder
  304. Temporary Items
  305. .apdisk
  306. ########################################
  307. # Windows #
  308. ########################################
  309. # Windows thumbnail cache files
  310. Thumbs.db
  311. ehthumbs.db
  312. ehthumbs_vista.db
  313. # Dump file
  314. *.stackdump
  315. # Folder config file
  316. [Dd]esktop.ini
  317. # Recycle Bin used on file shares
  318. $RECYCLE.BIN/
  319. # Windows Installer files
  320. *.cab
  321. *.msi
  322. *.msix
  323. *.msm
  324. *.msp
  325. # Windows shortcuts
  326. *.lnk
  327. ## Acknowledgements
  328. # Many thanks to `https://gitignore.io/`, written and maintained by Joe Blau, which contributed much material to this gitignore file.
  329. /data
  330. /papers
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...