I'd like for git to ignore the file named "Doxyfile", I added a .gitignore file but it still tries to track the file.
I added my steps belowm am I missing a step?
$ ls -a
.git .gitignore README
$ cat .gitignore
.DS_Store
Doxyfile
*~
$ touch Doxyfile
$ ls
Doxyfile README
$ git status -s
?? Doxyfile