Skip to content

Instantly share code, notes, and snippets.

View scarneros's full-sized avatar
⛩️
日本語の学生です

Sergi Carneros scarneros

⛩️
日本語の学生です
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