-
Notifications
You must be signed in to change notification settings - Fork 4
/
.gitignore
54 lines (37 loc) · 876 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
### OSX
.DS_Store
### Python
*.pyc
### Juputer/Ipython Notebook
.ipynb_checkpoints
### R
.Rhistory
*.nb.html
*.Rmd.html
### R studio
.Rproj.user
# ^ folder where project-specific temporary files (e.g. auto-saved source documents, window-state, etc.) are stored
################## Data files ##################
### R
# *.RData
################## RESULT FILES ##################
### Tables
# *.csv
# *.xlsx
### Plots
# *.pdf
# *.png
# *.gif
# *.mp4
################## PROJECT SPECIFC ##################
# out
# data
### "Un-ignore" publication folder | REF: https://stackoverflow.com/questions/5261959/unignore-subdirectories-of-ignored-directories-in-git
### This must come AFTER ignoring "results files" (e.g. .pdf)
!/src/publication/*
!/src/publication/**/*
!/results/*
!/results/**/*
################## TMP ##################
### TMP
src/tmp-leftover_code/