Skip to content

Instantly share code, notes, and snippets.

View Endogen's full-sized avatar
🐍

Endogen Endogen

🐍
  • Germany
View GitHub Profile
@sabarasaba
sabarasaba / gist:3080590
Created July 10, 2012 02:19
Remove directory from remote repository after adding them to .gitignore
git rm -r --cached node_modules
git commit -m 'Remove the now ignored directory node_modules'
git push origin master