Skip to content

Commit 331cb41

Browse files
committed
git cache cleared
1 parent 2d5209c commit 331cb41

File tree

6 files changed

+136
-49
lines changed

6 files changed

+136
-49
lines changed

.gitignore

Lines changed: 136 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,142 @@
11
# See https://help.github.com/ignore-files/ for more about ignoring files.
22

3-
# dependencies
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
420
/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+
# git rm -r --cached . && git add . && git commit -am 'git cache cleared' && git push
26+
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+
/build
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+
LARGE_Datasets
135+
*/LARGE_Datasets
136+
*/LARGE_Datasets/**
137+
**/LARGE_Datasets/**
138+
139+
# *** END OF FILES SPECIFIC TO ML Projects ****
5140

6141
# testing
7142
/coverage

Challenges-from-Popular-Coding-Practice-sites/Hacker-Rank-Solutions/30-days-of-code/day-1-data-types/day-1-datay-types.txt

Lines changed: 0 additions & 3 deletions
This file was deleted.

Challenges-from-Popular-Coding-Practice-sites/Hacker-Rank-Solutions/30-days-of-code/day-2-operators/day2.txt

Lines changed: 0 additions & 3 deletions
This file was deleted.

Challenges-from-Popular-Coding-Practice-sites/Hacker-Rank-Solutions/solutions/array-left-rotation/data.txt

Lines changed: 0 additions & 2 deletions
This file was deleted.

Large-Collection-of-Popular-Problems-with-Solutions/General-JS-Problems/comparing-number-to-string.txt

Lines changed: 0 additions & 39 deletions
This file was deleted.

Node-Express/Code/number.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)