You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### Gitignore a file that has already been uploaded / pushed to Git
1
+
### Gitignore a file that has already been uploaded / pushed to Git
2
2
3
-
If a file is already being tracked by Git, adding the file to .gitignore won’t stop Git from tracking it.
3
+
If a file is already being tracked by Git, adding the file to .gitignore won’t stop Git from tracking it.
4
4
5
5
You’ll need to do git rm the offending file(s) first, then add to your .gitignore.
6
6
7
-
So, I first run
7
+
So, I first run
8
8
9
9
### $ git rm -r --cached .idea
10
10
11
-
And then updated .gitignore file properly to exclude all .idea folders > then the regular < git add . > , < git commit -m “updaing gitignore” > and < git push >
11
+
And then updated .gitignore file properly to exclude all .idea folders > then the regular < git add . > , < git commit -m “updaing gitignore” > and < git push >
Copy file name to clipboardExpand all lines: README.md
+46-2
Original file line number
Diff line number
Diff line change
@@ -6,8 +6,52 @@ A list of common questions, along with answers, and some code-snippets that I am
6
6
7
7
There are many fantastic resources for JavaScript interview questions, videos, and blog posts on the web and that I have drawn from (**the below is one such small list**. I will cite as many as I can throughout so that additional information on each list item can be easily found.
8
8
9
-
10
-
**A curated list of general resources for JavaScript Interviews**
Copy file name to clipboardExpand all lines: Redux/Reducers.md
+4
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,7 @@
1
+
### Reducers - Absolute Bas
2
+
3
+
### Reducer is just
4
+
1
5
1> https://redux.js.org/basics/reducers
2
6
3
7
Reducers specify how the application's state changes in response to actions sent to the store. Remember that actions only describe what happened, but don't describe how the application's state changes.
0 commit comments