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

how to remove node modules using git command

Remove node modules
rm -r node_modules
Comment

PREVIOUS NEXT
Code Example
Shell :: delete files with a certain extension recursively 
Shell :: how to start nginx in linux 
Shell :: kill process running on port mac 
Shell :: test angular lib with nx 
Shell :: ubuntu restart mariadb 
Shell :: upgrade pandas version 
Shell :: Check if wayland or x11 is used 
Shell :: remove unused packages ubuntu 
Shell :: remove docker container 
Shell :: mongodb stop server mac 
Shell :: update composer ubuntu 
Shell :: install redis on mac pro 
Shell :: clear npm logs 
Shell :: install wps ubuntu 
Shell :: stop nginx 
Shell :: uninstall imagemagick ubuntu 
Shell :: install yarn globally 
Shell :: kill port linux 
Shell :: how to install pyqt5 on windows 
Shell :: Could not install packages due to an OSError: [WinError 5] Access is denied: 
Shell :: how to install sublime text on arch linux 
Shell :: git rename master to main 
Shell :: clear docker 
Shell :: Install / Update Dbeaver Community on Ubuntu 
Shell :: lsb_release: command not found 
Shell :: remote origin already exist error 
Shell :: dotnet build release 
Shell :: apache enable site 
Shell :: installing pip in ubuntu 
Shell :: conda pyinstaller 
ADD CONTENT
Topic
Content
Source link
Name
3+8 =