Skip to content

Instantly share code, notes, and snippets.

View maufirf's full-sized avatar

maufirf maufirf

View GitHub Profile
@maufirf
maufirf / gist:d8f33e15d470cd9596e82d6c7993a075
Created February 17, 2019 10:34 — forked from sabarasaba/gist:3080590
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