-
Notifications
You must be signed in to change notification settings - Fork 36
/
.gitignore
43 lines (36 loc) · 1005 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
# `config_user.yaml` is ignored as it contains user-specific settings
*config_user.yaml
# `/external/` and `/input/` subdirectories are ignored as they should contain symbolic links, which are user-specific and can be automatically created via `gslab_make`
*external/
*input/
# One exception is for `paper_slides`, where copies instead of symbolic links are created
!*paper_slides/external/
!*paper_slides/input/
# `/temp/` subdirectories are ignored as they are temporary by design
*temp/
# `/output_local/` subdirectories are ignored as they contain large outputs that will be stored outside of Github
*output_local/
# Commit everything in `gslab_make`
!*lib/gslab_make/tests/input/
# The following extensions indicated intermediate files generated by certain programs during compiling
*.pyc
*.lyx~
*.lyx#
*.lyx.emergency
*.Rhistory
*.Rapp.history
*Rplots.pdf
*.DS_Store
*.aux
*.fls
*.lof
*.lot
*.nav
*.snm
*.toc
*.out
*.svn
*.ipynb_checkpoints/
*setup_stata.log
# Personal conda info
.conda_info