I have a git repo that I need to get working without conflicts. It is .net/c# mvc repo. The problem is dll and pdb files. These files have been accidentally committed to the repo so when I do my initial git pull
, I get all these files committed by another developer.
I have setup the .gitignore
like so:
bin/
obj/
App_data/
From other posts I believe that is all I should need to do, however, If I build my project and run git status
it shows numerous dll and pdb files that are going to be committed.
Is this because those files existed in the repo when I cloned it? If so, what is the best way to go about removing those files?