Skip to content

Instantly share code, notes, and snippets.

View iammuttaqi's full-sized avatar
🏠
Working from home

Muttaqi iammuttaqi

🏠
Working from home
View GitHub Profile
@iammuttaqi
iammuttaqi / Clear .gitignore cache.md
Last active March 26, 2025 12:46 — forked from ainsofs/gist:2b80771a5582b7528d9e
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"