I've committed a file in a folder previously and nothing I put in .gitignore is now ignoring the folder and everything in it. I've tried committing:
.vscode
.vscode/
.vscode/*
.vscode/**
Even with /
at the beginning of each of those... .vscode and its contents keep showing up in git status
.
If I commit .vscode/settings.json
to .gitignore, the file keeps showing up in status whenever I make a change.
How am I supposed to get git to just start ignoring this folder and all of its contents?