I am trying to ignore some files from my project. I have the following extensions in .gitignore
*.opensdf
*.sdf
*.tlog
*.cer
*.cat
*.inf
*.tmh
*.inf
I see the following file is ignored
D:\Projects\driver1\driver1\inter\Win32\Win7Debug\link.command.1.tlog
but the following file is seen as Modified, thus this one is not ignored.
D:\Projects\driver1\ioctlapp\inter\Debug\link.write.1.tlog
Why the second file isn't ignored and how can i fix the problem?
I took only 2 files from both, from ignored and not ignored files, but there are more files which I expect to ignore and they aren't.