Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

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
Comment

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
Comment

PREVIOUS NEXT
Code Example
Shell :: cordova ios 5.1.0 
Shell :: scp connection refused 
Shell :: navigate to drive d cmd 
Shell :: replace all instances 
Shell :: Install docker with apt command 
Shell :: expo upgrade reset 
Shell :: compare strings shell 
Shell :: find location for powershell profile ps1 file 
Shell :: Exit bash script if not running as root 
Shell :: bash get all files in directory as array 
Shell :: az login acr -n 
Shell :: windows find node path 
Shell :: git reset last commit 
Shell :: what is meant by valence shell 
Shell :: copy folder from on server machine 
Shell :: reset last commit 
Shell :: how to install pygame windows 10 
Shell :: how to split a string in bash 
Shell :: Iterate over only folder in bash 
Shell :: how to exit vim 
Shell :: npm install --unsafe-perm 
Shell :: ubuntu not showing currently open application icons 
Shell :: Terminal commands to push a file to Github 
Shell :: bash alias function that accepts arguments 
Shell :: offline heic to jpg converter on linux 
Shell :: openssl p12 to pem 
Shell :: ubuntu arial font 
Shell :: sudo apt install ubuntu-desktop ? 
Shell :: check which users are part of a group linux 
Shell :: install plasma kde manjaro 
ADD CONTENT
Topic
Content
Source link
Name
6+9 =