I want git to ignore my csv files. But, when I do git status , I see that csv is in "Changes not staged for commit" . But, I swear, I added it to the .gitignore file a while ago. In fact, when I look at the .gitignore file, I see that it is!
*.csv
So how do I get git to ignore my csv? The problem is that I want to be able to do git reset and git checkout without worrying about rewritable csv in my working directory.
source share