First of all, I've seen .vs\config\applicationhost.config in source control.
We are working in a team and Visual Studio changes some path inside applicationhost.config
file. We need to exclude this. In my .gitignore
file, I've added:
/.vs/config/applicationhost.config
However, in every commit, this is again added to the git. Before VS2015 Update 2, it was no issue, but something has changed to git integration with VS after this update and now it's being included. Whenever my workmates pull changes to the branch, their IIS Express fails because of the changes to this file (it has paths local to my own PC's paths etc.) and vice versa.
How do I pull this file out of the source control completely?