I have a standard .gitignore file that I include in every project. One of the lines in there ignores "bin".
It so happens, in this particular project, I actually want a /bin directory. I removed "bin" from .gitignore, but git still won't let me add the /bin directory. It still thinks it should ignore it, even though the string has been removed from .gitignore.
All the answers I'm finding are about how to ignore something previously committed, but I'm not finding any info on how to add something previously ignored.
So: How do I tell git to unignore something previously ignored?