-
Notifications
You must be signed in to change notification settings - Fork 839
/
.gitignore
236 lines (195 loc) · 3.21 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
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
# See https://help.github.com/ignore-files/ for more about ignoring files.
node_modules/
# The above is the MOST EFFECTIVE ONE as per
# https://stackoverflow.com/a/1470664/1902852
# The way to ignore all directories called "node_modules"
# anywhere below the current level in a directory tree
# Further if I have already pushed a directory to remote then remove that with below
# Execute a folder remove (rm) from index only (--cached) recursivelly (-r). Command line example for root bin folder:
# `git rm -r --cached full_absolute_path`
# e.g. I had to run the below kind of command to remove the ".next" folder that was pushed to remote github
# passing the full path of the .next folder
# git rm -r --cached /media/veracrypt2/014-agency-classic-next/.next
*node_modules
/*node_modules
*/*node_modules
**/*node_modules
/node_modules
/node_modules/*
*/node_modules/*
# If you have performed a task, such as adding a new line item to your .gitignore file, I MUST need to clear out your git repo's cache in order for the changes to take place. Here are the commands for doing that:
# git rm -r --cached . && git add . && git commit -am 'git cache cleared' && git push
__MACOSX/
*__MACOSX
/*__MACOSX
*/*__MACOSX
**/*__MACOSX
/__MACOSX
/__MACOSX/*
*/__MACOSX/*
.next/
*.next
/*.next
*/*.next
**/*.next
/.next
/.next/*
*/.next/*
.npy/
*.npy
/*.npy
*/*.npy
**/*.npy
/.npy
# testing
coverage/
*coverage
/*coverage
*/*coverage
**/*coverage
/coverage
/coverage/*
*/coverage/*
# production
build/
*build
/*build
*/*build
**/*build
/build
/build/*
*/build/*
.db/
*.db
/*.db
*/*.db
**/*.db
/.db
.pkl/
*.pkl
/*.pkl
*/*.pkl
**/*.pkl
/.pkl
.pyc/
*.pyc
/*.pyc
*/*.pyc
**/*.pyc
/.pyc
*.txt
/*.txt
*/*.txt
**/*.txt
/.txt
*.csv
/*.csv
*/*.csv
**/*.csv
/.csv
*glove_vectors
/glove_vectors
*/*glove_vectors
**/*glove_vectors
/glove_vectors
*.zip
/*.zip
*/*.zip
**/*.zip
/.zip
*.rar
/*.rar
*/*.rar
**/*.rar
/.rar
*.7z
/*.7z
*/*.7z
**/*.7z
/.7z
LARGE_Datasets
*/LARGE_Datasets
*/LARGE_Datasets/**
**/LARGE_Datasets/**
*.mov
/*.mov
*/*.mov
**/*.mov
/.mov
*.mp4
/*.mp4
*/*.mp4
**/*.mp4
/.mp4
# *** END OF FILES SPECIFIC TO ML Projects ****
# testing
/coverage
# production
/build
# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Ignore docs files
_gh_pages
.ruby-version
# Numerous always-ignore extensions
*.diff
*.err
*.orig
*.log
*.rej
*.swo
*.swp
*.zip
*.vi
*~
*.~lock*
.~lock*
# OS or Editor folders
.DS_Store
._*
Thumbs.db
.cache
.project
.settings
.tmproj
*.esproj
nbproject
*.sublime-project
*.sublime-workspace
.idea
# Komodo
*.komodoproject
.komodotools
# grunt-html-validation
validation-status.json
validation-report.json
# Folders to ignore
node_modules
Project-Note-PAUL
.vscode
# Ignore all logfiles and tempfiles.
!/log/.keep
/tmp
/.gems
CountDownTimer-Note.odt
random-code-1.js
random-code-2.js
random-code-3.js
performance-1.js
#ignore file name ending in "-bkp.js" OR "-bkp.ts" OR "-bkp.py" or "-test.js" OR "-test.ts" in its name. So I will have to put "-test.js" at all files that is just for my development-time random testing code .
**/*-bkp.js
**/*-bkp.ts
**/*-bkp.py
**/*-test.js
**/*-test.ts
**/*-test.py
**/*-test.ipynb
**/*-test.md
**/*-test.json