Remove A Folder From Git Tracking
For when you inevitably forget to update .gitignore before committing your IDE configs
Update .gitignore
Section titled “Update .gitignore”.ideaRemove Folder From Working Tree
Section titled “Remove Folder From Working Tree”git rm -r --cached .ideaCommit
Section titled “Commit”git add .gitignoregit commit -m 'chore: remove .idea folder from git tracking'