In my package, I have a Unit test runner that runs as a part of build. This runner generates a text file that lists Unit test coverage of all source files in my code.
This file gets changed usually with every single commit, and git almost always shows the conflicts whenever I merge/pull/pop from anywhere in this particular file.
Is there a way I can make git always select the version of file that is currently in my local repository for this particular file, as it represents usually the updated coverage.
I thought of removing this file altogether from the repository but it let's me see the code coverage with every commit which is really good.