1# .gitignore_global
2#
3# The file types which Git should ignore, i.e. not be added to the repository.
4
5# Vim backup files.
6*~
7*.swp
8
9# Mac OS X file manager configuration files.
10.DS_Store
11
12# PyCharm project directories.
13.idea
14
15# All Ctags files.
16tags
17
18# HTML versions of LISP, Python, C, C++, etc. files since these are autogenerated by updatewebpage.py
19*.lsp.html
20*.c.html
21*.h.html
22*.cpp.html
23*.hpp.html
24*.py.html
25*.sh.html
26*.html.html
27*.css.html
28*.txt.html
29*.dat.html
30*.yaml.html
31*.ipynb.html
32*.js.html
33makefile.html
34
35# Object files.
36*.o
37
38# Archive files.
39*.tar.gz
40
41# Any directories you want to ignore.
42repos/
43.ipynb_checkpoints/