Skip to content

Instantly share code, notes, and snippets.

View xalakox's full-sized avatar
🌏
Working from Anywhere

Salvador Aceves Osuna xalakox

🌏
Working from Anywhere
View GitHub Profile
@paulallies
paulallies / gist:0052fab554b14bbfa3ef
Last active March 31, 2026 18:26
Remove node_modules from git repo
#add 'node_modules' to .gitignore file
git rm -r --cached node_modules
git commit -m 'Remove the now ignored directory node_modules'
git push origin <branch-name>