-
Notifications
You must be signed in to change notification settings - Fork 6
/
.gitignore
51 lines (51 loc) · 977 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
# temporary file used to make commits
/git_commit.sh
#
# temporary file used by bin/user_test.sh
/user_test.tmp
#
# cmake configuration files that are put in source directory
/include/dismod_at/configure.hpp
/python/bin/dismodat.py
/bin/user_test.sh
#
# Directory were builds take place. Note that /build is a link, hence
# it looks to git like a file instead of a directory.
/build
#
# Directories created by pip
/python/build/
/python/dismod_at.egg-info/
#
# a previous release build that /build can point to
/build.release/
#
# a previous debug build that /build can point to
/build.debug/
#
# Directory where externals are downloaded and built
/external/
#
# directory where ihme databases are copied
/ihme_db/
#
# directories that are used for stashing files
# (any new directory and new.* in top directory)
/new/
/new.*/
#
# vim swap files
*.swp
#
# log files
/*.log
#
# error files
/*.err
#
# python compiled files
*.pyc
#
# temporary file for many purposes
temp
temp.*