I would like to have branch-specific files with the same name. I need to be able to merge from my development branch to master without changes made in this file.
For example:
Let's assume that I would like to have two different readme.md
files. In one I would like to have content: MASTER
and in another DEV
. But if I try to do it, while creating pull-request GitHub will try to merge this file, which is exactly my problem. I don't want GitHub to merge this file each time I make changes.
What would be the best way to solve this problem?