Skip to content

Instantly share code, notes, and snippets.

View alexspurlock25's full-sized avatar
👋
Hello

Alexander Spurlock alexspurlock25

👋
Hello
View GitHub Profile
@ainsofs
ainsofs / gist:2b80771a5582b7528d9e
Created April 16, 2015 01:50
Clear .gitignore cache
# remove specific file from git cache
git rm --cached filename
# remove all files from git cache
git rm -r --cached .
git add .
git commit -m ".gitignore is now working"