Skip to content

Instantly share code, notes, and snippets.

View Zaur-Lumanov's full-sized avatar

Zaur Zaur-Lumanov

  • vk.com/hs
  • Moscow
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"