-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.gitignore
103 lines (82 loc) · 1.67 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# History files
.Rhistory
# IGNORE example code in package build process
*-Ex.R
# IGNORE R data files from past sessions
.Rdata
.Rhistory
# IGNORE output files from scripts
*.pdf
*.jpg
*.jpeg
*.png
*.tiff
NUL
# IGNORE other non-essential files
*.pages
*.docx
examples/**/*.md
examples/**/*.Rmd
# IGNORE local ddg directories
examples/**/ddg*/
examples/**/local*/
examples/checkPointTest/testfile*.txt
# INCLUDE a few tests we named impropertly
!examples/DDGHangBug
!examples/ddgChangesBehavior
!examples/ddgTest
# IGNORE files beginning with '_'
_*
# IGNORE log files
*.log.txt
*.log
# IGNORE local versions of files
*.local
# IGNORE backups
*.bak
# IGNORE Project Files
.project
/DESCRIPTION~
# IGNORE vignette and knitr files
*.sty
*.aux
*.lof
vignettes/*.out
vignettes/*.tex
*synctex.gz
vignettes/*.dvi
*.toc
# INCLUDE jpg file under vignettes and testDocs
!vignettes/*/*.jpg
!vignettes/*/*.png
!testDocs/*/*.jpg
!testDocs/*/*.png
# INCLUDE .txt files under checkpoint test
!examples/checkpointTest/*.txt
# IGNORE specific test files
examples/CalculateSquareRoot/*.csv
examples/checkpointTest/testfile3.txt
examples/RealTime15MinMET/*.csv
examples/SivanSampling/*.csv
examples/seminars/seminar1/*.csv
# INCLUDE files needed for tests
!examples/RealTime15MinMET/archive-15min.csv
!examples/seminars/seminar1/reu_r_data1.csv
# INCLUDE PDF in /inst/doc
!inst/doc/*.pdf
# IGNORE out .out files but INCLUDE those with expected in the name
*.out
!*expected*.out
# IGNORE the Java directory
Java/
/ddg.txt
/ddg/*
# IGNORE local copies of sourceTest.r
examples-no-instrumentation/*/sourceTest.r
tests/*/sourceTest.r
# IGNORE generated ddg folder
*_ddg
/.DS_Store
# Ignore package
*.tar.gz
*.Rcheck