Skip to content

Instantly share code, notes, and snippets.

@paul-vd
paul-vd / untrack-git-files.md
Last active February 25, 2021 09:22
This helps untract files previous pushed to repo, and then added to .gitignore

This helps untract files previous pushed to repo, and then added to .gitignore

git rm -r --cached .
git add .
git commit -m "chore: untracked files issue resolved to fix .gitignore"

Here is another example un-tracking files like .env and then removing it from the history