I am using git through visual studio to push and pull the code from git repository. A team of three people are at present using the same repository. One of my colleague has accidentally pushed bin and obj folders of the project. (there is anothe problem where in the bin and obj folders does not get excluded even though we tried all possible combinations of it in gitignore file). So when I tried to pull the updates today, I have ran into a solution where in I am getting 729 conflicts
. Out of which 2 code files are having conflicts which I have resolved, but there are remaining 727 files which I want to keep local files.
In visual studio I get a option to choose either to keep local to take remote file. But unfortunately there is no select option for that. Which means if have to resolve the conflicts I have to manually choose if I have to choose either to keep local or take remote for 727 files (which is nearly impossible).
I do not want to loose my changes as well as do not want to loose the resolved files(2 files out of 729)
. Any help would be greatly appreciated.