Git Ignore Not Saving Changes

[Solved] Git Ignore Not Saving Changes | Shell - Code Explorer | yomemimo.com
Question : updated gitignore not working

Answered by : martino-gabrielli

git rm -r --cached .
git add .
git commit -m "fixed untracked files"

Source : https://stackoverflow.com/questions/11451535/gitignore-is-ignored-by-git | Last Update : Fri, 28 Feb 20

Question : git ignore not saving changes

Answered by : dull-deer-psl65w92z2fj

git rm -rf --cached .
git add .

Source : https://stackoverflow.com/questions/25436312/gitignore-not-working/25436481 | Last Update : Tue, 09 Jun 20

Answers related to git ignore not saving changes

Code Explorer Popular Question For Shell