I have a file that has a list of feature acceptance tests I desire to be executed in Jenkins during pull requests. This file needs to be checked in so that Jenkins has access to it, but it also means it will be different on every branch, depending upon the feature being worked on. As a result, this file is flagged in every pull request in github as having merge conflicts.
QUESTION: Is there a way that I can set this single file (only) to always merge as --our so that I and my team don't have to resolve this conflict in every branch I ever work on?
I will always want this file to overwrite whatever used to be there, but I cannot seem to find a way to set configurations for a specific file only that can do this.
The .gitconfig isn't checked in, so I'm not sure how to write a custom driver that everyone else would automatically get to use.
Thank you in advance.