-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy path.gitignore
75 lines (66 loc) · 989 Bytes
/
.gitignore
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
# See http://help.github.com/ignore-files/ for more about ignoring files.
##
## foo.txt # Ignore any file named foo.txt.
## *.html # Ignore (generated) html files,
## !foo.html # except foo.html which is maintained by hand.
## *.[oa] # Ignore objects and archives.
## !lib.a # but do track lib.a, even though you're ignoring .a files above
## /TODO # only ignore the root TODO file, not subdir/TODO
## build/ # ignore all files in the build/ directory
## doc/*.txt # ignore doc/notes.txt, but not doc/server/arch.txt
##
.*
!.gitignore
!.github
!.travis.yml
*.[oa]
*.log
*.tmp
*.pid
*.swp
*.sw?
*~
# Binary packages
*.rpm
*.deb
*.gem
*.pkg
*.box
*.iso
*.war
*.jar
# Compressed
*tar
*z
*bz2
*zip
*arj
*a[0-9][0-9]
*lha
# textfiles
*.buf
*.lst
*.log
*.csv
# directories
tmp/
log/
.vagrant/
__pycache__/
# This project
*.csv
*.txt
*.ods
*.xls
*.xlsx
*.ipynb
Untitled*
?.*
venv/
data/
*.sqlite
# Pkg build
build/
dist/
src/*.egg-info
htmlcov/