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
32makefile.html
33
34# Object files.
35*.o
36
37# Archive files.
38*.tar.gz
39
40# Any directories you want to ignore.
41repos/
42.ipynb_checkpoints/