forked from michaelchughes/NPBayesHMM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
59 lines (50 loc) · 1.14 KB
/
.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
# IGNORE THESE FILES FROM THE GITHUB REPOSITORY
# ====================================================== EXCLUDE DIRECTORIES
# Exclude everything in the bin directory,
# which holds compiled binaries for executing on grid
# These can all be built automatically using the build_*.sh scripts in the code directory
bin/
# Exclude everything in these directories
# These aren't of interest for tracking in a repository because
# (1) file sizes can be HUGE
# (2) these files rarely mean anything to others except the person who ran the test
results/
logs/
figs/
notes/
profiles/
local/
# ====================================================== EXCLUDE FILE PATTERNS
# Exclude user-specific config options for where to read and write data
*.path
# Exclude temporary files created by text editors
*~
*~lock*
*.DS_Store
.*.swp
# Exclude mocap files
*.amc
*.asf
*.key
# Exclude videos
*.avi
*.swf
*.mpg
# Exclude compiled python
*.pyc
# Exclude executable files generated by Matlab's mex
*.mexglx
*.mexa64
*.mexmaci64
# Exclude auxiliary files generated by LaTeX
*.pdf
*-eps-converted-to.pdf
*.dvi
*.log
*.blg
*.bbl
*.aux
*.backup
*.tmp
*.synctex.gz
*.out