Skip to content

Commit b214191

Browse files
committed
first commit
0 parents commit b214191

File tree

1 file changed

+277
-0
lines changed

1 file changed

+277
-0
lines changed

.gitignore

Lines changed: 277 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,277 @@
1+
# See https://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
node_modules/
4+
# The above is the MOST EFFECTIVE ONE as per
5+
# https://stackoverflow.com/a/1470664/1902852
6+
# The way to ignore all directories called "node_modules"
7+
# anywhere below the current level in a directory tree
8+
9+
# Further if I have already pushed a directory to remote then remove that with below
10+
# Execute a folder remove (rm) from index only (--cached) recursivelly (-r). Command line example for root bin folder:
11+
# `git rm -r --cached full_absolute_path`
12+
# e.g. I had to run the below kind of command to remove the ".next" folder that was pushed to remote github
13+
# passing the full path of the .next folder
14+
# git rm -r --cached /media/veracrypt2/014-agency-classic-next/.next
15+
16+
*node_modules
17+
/*node_modules
18+
*/*node_modules
19+
**/*node_modules
20+
/node_modules
21+
/node_modules/*
22+
*/node_modules/*
23+
24+
# 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:
25+
26+
# git rm -r --cached . && git add . && git commit -am 'git cache cleared' && git push
27+
28+
__MACOSX/
29+
*__MACOSX
30+
/*__MACOSX
31+
*/*__MACOSX
32+
**/*__MACOSX
33+
/__MACOSX
34+
/__MACOSX/*
35+
*/__MACOSX/*
36+
37+
.next/
38+
*.next
39+
/*.next
40+
*/*.next
41+
**/*.next
42+
/.next
43+
/.next/*
44+
*/.next/*
45+
46+
.npy/
47+
*.npy
48+
/*.npy
49+
*/*.npy
50+
**/*.npy
51+
/.npy
52+
53+
# testing
54+
coverage/
55+
*coverage
56+
/*coverage
57+
*/*coverage
58+
**/*coverage
59+
/coverage
60+
/coverage/*
61+
*/coverage/*
62+
63+
# production
64+
build/
65+
*build
66+
/*build
67+
*/*build
68+
**/*build
69+
/buildgs
70+
/build/*
71+
*/build/*
72+
73+
74+
.db/
75+
*.db
76+
/*.db
77+
*/*.db
78+
**/*.db
79+
/.db
80+
81+
.pkl/
82+
*.pkl
83+
/*.pkl
84+
*/*.pkl
85+
**/*.pkl
86+
/.pkl
87+
88+
.pyc/
89+
*.pyc
90+
/*.pyc
91+
*/*.pyc
92+
**/*.pyc
93+
/.pyc
94+
95+
*.txt
96+
/*.txt
97+
*/*.txt
98+
**/*.txt
99+
/.txt
100+
101+
*.csv
102+
/*.csv
103+
*/*.csv
104+
**/*.csv
105+
/.csv
106+
107+
108+
*glove_vectors
109+
/glove_vectors
110+
*/*glove_vectors
111+
**/*glove_vectors
112+
/glove_vectors
113+
114+
115+
116+
*.zip
117+
/*.zip
118+
*/*.zip
119+
**/*.zip
120+
/.zip
121+
122+
*.rar
123+
/*.rar
124+
*/*.rar
125+
**/*.rar
126+
/.rar
127+
128+
*.7z
129+
/*.7z
130+
*/*.7z
131+
**/*.7z
132+
/.7z
133+
134+
*.tar.gz
135+
/*.tar.gz
136+
*/*.tar.gz
137+
**/*.tar.gz
138+
/.tar.gz
139+
140+
141+
*.gz
142+
/*.gz
143+
*/*.gz
144+
**/*.gz
145+
/.gz
146+
147+
LARGE_Datasets
148+
*/LARGE_Datasets
149+
*/LARGE_Datasets/**
150+
**/LARGE_Datasets/**
151+
152+
/Others_Code_gitignore
153+
/Others_Code_gitignore/*
154+
*/Others_Code_gitignore/*
155+
156+
/YouTube_Experiments_Scripts
157+
/YouTube_Experiments_Scripts/*
158+
*/YouTube_Experiments_Scripts/*
159+
160+
# *** END OF FILES SPECIFIC TO ML Projects ****
161+
162+
163+
# FOR THIS REPO ONLY - I am excluding Jupyter Notebook so not to bulk up Netlify Build Folder
164+
.ipynb/
165+
*.ipynb
166+
/*.ipynb
167+
*/*.ipynb
168+
**/*.ipynb
169+
/.ipynb
170+
/.ipynb/*
171+
*/.ipynb/*
172+
173+
174+
175+
# misc
176+
DS_Store/
177+
.DS_Store
178+
.env.local
179+
.env.development.local
180+
.env.test.local
181+
.env.production.local
182+
183+
npm-debug.log*
184+
yarn-debug.log*
185+
yarn-error.log*
186+
187+
# Ignore docs files
188+
_gh_pages
189+
.ruby-version
190+
191+
# Numerous always-ignore extensions
192+
*.diff
193+
*.err
194+
*.orig
195+
*.log
196+
*.rej
197+
*.swo
198+
*.swp
199+
*.zip
200+
*.vi
201+
*~
202+
*.~lock*
203+
.~lock*
204+
205+
# OS or Editor folders
206+
.DS_Store
207+
._*
208+
Thumbs.db
209+
.cache
210+
.project
211+
.settings
212+
.tmproj
213+
*.esproj
214+
nbproject
215+
*.sublime-project
216+
*.sublime-workspace
217+
.idea
218+
219+
# Komodo
220+
*.komodoproject
221+
.komodotools
222+
223+
# grunt-html-validation
224+
validation-status.json
225+
validation-report.json
226+
227+
# Folders to ignore
228+
Project-Note-PAUL
229+
.vscode
230+
231+
# Ignore all logfiles and tempfiles.
232+
!/log/.keep
233+
/tmp
234+
/.gems
235+
236+
CountDownTimer-Note.odt
237+
random-code-1.js
238+
random-code-2.js
239+
random-code-3.js
240+
performance-1.js
241+
242+
test.html
243+
test1.html
244+
test2.html
245+
test3.html
246+
247+
#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 .
248+
**/*-bkp.js
249+
**/*-bkp.ts
250+
**/*-bkp.py
251+
**/*-test.js
252+
**/*-test.ts
253+
**/*-test.py
254+
**/*-test.ipynb
255+
**/*-test.md
256+
**/*-test.json
257+
258+
# OS or Editor folders
259+
.DS_Store
260+
._*
261+
Thumbs.db
262+
.cache
263+
.project
264+
.settings
265+
.tmproj
266+
*.esproj
267+
nbproject
268+
*.sublime-project
269+
*.sublime-workspace
270+
.idea
271+
node_modules
272+
Others_Code_gitignore
273+
Project-Note-PAUL
274+
.vscode
275+
276+
# Local Netlify folder
277+
.netlify

0 commit comments

Comments
 (0)