-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy path.gitignore
More file actions
140 lines (120 loc) · 2.35 KB
/
.gitignore
File metadata and controls
140 lines (120 loc) · 2.35 KB
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
# exclude everything other than FRED core directories
/*
!/LICENSE
!/Makefile
!/README.md
!/VERSION
!/bin/
!/pybin/
# !/calibration/
!/data/
!/docs/
!/etc/
!/include
!/include/*
!/models
!/src/
!/library
!/library/contrib/
!/library/user/
!/library/*
!/samples/
!/tests/
!/tutorial/
src/METHODS
# ignore the cached python binary files
**/__pycache__/*
# ignore python document build files
pybin/docs/build/
!/docs/html
#!/docs/*.pdf
#!/docs/*.fred
data/country/*
!data/config.fred
!data/country/usa
data/country/usa/*
!data/country/usa/*.txt
!data/country/usa/msa/
!data/country/usa/projections/
!data/country/usa/state/
!data/country/usa/ADI/
!data/country/usa/SHAPES/
data/country/usa/SHAPES/CENSUS_TRACTS/
!data/country/usa/MAPS/*
# include only sample populations
!data/country/usa/RTI_2010_ver1
data/country/usa/RTI_2010_ver1/*
!data/country/usa/RTI_2010_ver1/*.txt
!data/country/usa/RTI_2010_ver1/42003
!data/country/usa/RTI_2010_ver1/42065
!data/country/usa/US_2010.v3
data/country/usa/US_2010.v3/*
!data/country/usa/US_2010.v3/*.txt
!data/country/usa/US_2010.v3/METHODS
!data/country/usa/US_2010.v3/elev.cc
!data/country/usa/US_2010.v3/hosp.tar
!data/country/usa/US_2010.v3/42003
!data/country/usa/US_2010.v3/42065
data/country/usa/US_2010.v3/42003/variables.csv
data/country/usa/US_2010.v3/42003/gq_variables.csv
data/country/usa/US_2010.v3/42065/variables.csv
data/country/usa/US_2010.v3/42065/gq_variables.csv
!data/country/usa/US_2010.v3.5
data/country/usa/US_2010.v3.5/*
!data/country/usa/US_2010.v3.5/*.txt
!data/country/usa/US_2010.v3.5/42003
!data/country/usa/US_2010.v3.5/42065
# exclude RESULTS
RESULTS/**
# exclude temporary files
**/OLD/
**/OUT/
**/OUT[0-9]/
**/OUT.TEST/
**/OUT.RT/VIS/
**/compare.test
**/CHECK_PARAMETERS.txt
src/params
src/*.txt
src/*.fred
**/factors
src/x*
src/z*
**/xx*
**/zz*
# exclude movie, plot and pdf files
**/*.mp4
**/*.plt
**/*.pdf
# exclude FRED executables
src/FRED
bin/FRED
src/FRED_API
bin/FRED_API
bin/fred_make_maps.log
src/FRED.md5
src/FRED.tar.gz
**/*.md5
**/*.gz
# exclude DEPENDS file created by make
src/DEPENDS
src/params*
src/OUT*/
src/fsz
bin/fsz
bin/fred_make_maps.log
# ignore file that start with period
**/\.*
# include the .gitignore file
!.gitignore
# ignore file that end with tilde
**/*~
# ignore .o files
**/*.o
# ignore LOG files
**/LOG
**/log
**/*.logs
bin/fred_make_maps.logs
# ignore all CVS directories
**/CVS/