I have seen the same answers over and over and they don't work.
I've added the folders to my .gitignore file ... I can't seem to locate the folders in my GitHub repo so uncertain if they were ever added ...
I've tried the following but it doesn't work and undoes everything that was already added to my repo:
git rm -r --cached .
I've tried the following and it tells me it's not a file:
git rm -r --cached FOLDERNAME
git rm -r --cached FOLDERNAME\
git rm -r --cached "Full Path To Folder"
I do not want to delete them completely, so cleaning it is out of the question.
What can I do to fix this?