-
Notifications
You must be signed in to change notification settings - Fork 3
/
.gitignore
66 lines (56 loc) · 1.32 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
60
61
62
63
64
65
66
#############
## Typical .gitignore file for OUHSC BBMC repositories
#############
# In base directory
README.html
#In DocumentationGlobal directory
Gotchas.html
PatternReportDesign.html
PatternReportRun.html
ReportChecklist.html
ResourcesInstallation.html
ResourcesOfficial.html
ResourcesOpinions.html
ProjectGuidelines.html
#Anywhere
*.zip
*.Zip
*.ZIP
*.Rhistory
*.Rproj.user
#I'm afriad this might contain PHI if someone knew how to decode it.
us.stackdump
#Keep data of the repository, in case PHI has snuck in by accident.
*.rdata
*.Rdata
*.RData
*.RDATA
*.RDS
*.rds
*.csv
*.txt
*.mdb
*.accdb
*.sav
*.sas7bdat
*.xls
*.xlsx
#Sometimes data files are legitimate (and PHI-free). In these cases, you can explicitly specify files to include, and upload to the central server. Put an exclamation point in front of it.
!RecruitmentProductivity/RecruitingZones/ZipcodesToZone.csv
#Declares the packages required for the repository's code.
!utility/package-dependency-list.csv
!utility/package_dependency_list.csv
#Allow files in the DataPhiFree directory to be saved in the repository
!data_phi_free/raw/mt_cars.csv
!data_phi_free/derived/motor_trend_car_test.rds
#For LaTeX
*.tex
*.synctex.gz
*.log
#Exclude cache files created when knitr generates a report.
cache/
*/cache/
*/*/cache/
# Example code in package build process
*-Ex.R
.Rproj.user