Is it possible to tell git to stop tracking changes to the web.config file after the initial commit? I've got a .gitignore file with *.config in it. But since I committed the web.config file on the initial check in, any time I make change to web.config file it keeps track of it. But if i add a second config file it does ignore that file..
I want to be able to ignore any changes I make to the first web.config file as well.. Is this possible?