Horje
how to remove node modules from github 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
scheduler ubuntu cmd Code Example scheduler ubuntu cmd Code Example
install terminator ubuntu Code Example install terminator ubuntu Code Example
git remote origin Code Example git remote origin Code Example
venv activate Code Example venv activate Code Example
git diff with remote branch Code Example git diff with remote branch Code Example

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