Horje
how to remove node_modules from git Code Example
how to remove node_modules from git
# Do the below steps -
# Make .gitignore file.
# Run below commands in your terminal

git rm -r --cached node_modules

git commit -am "node_modules be gone!"

git push origin master
how to remove node modules from github
remove node_modules
git rm -r --cached node_modules

git commit -am "node_modules be gone!"

git push origin master




Shell

Related
uninstall skype from ubuntu Code Example uninstall skype from ubuntu Code Example
install nodemon as dev dependency Code Example install nodemon as dev dependency Code Example
how to install audacity on ubuntu Code Example how to install audacity on ubuntu Code Example
E: Unmet dependencies. Try 'apt --fix-broken install' with no packages (or specify a solution). Code Example E: Unmet dependencies. Try 'apt --fix-broken install' with no packages (or specify a solution). Code Example
No module named 'storages' Code Example No module named 'storages' Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
21