Is it possible to keep some file unmerged all the time?
What I want is:
If there are two branches (A) and (B), and they have the same file. For example,
In branch (A) the file "setup" has the following:
this is setup
in a branch A
In branch (B) the file "setup" has the following:
this is setup
in a branch B
These branches don't have uncommitted files (Different commits for the same files in different branches).
The GOAL is to keep these files not touched after merging these branches.
The solutions in How to tell Git to always select my local version and Prevent merging a file from master with Git don't work for this. Because they work only when there's a conflict while merging them. (Well, yes there's going to be a conflict if we merge these two branches and it works for once. But if we merge (A) to (B), then (B) to (A), then the files become the same in both branches)
Does GIT have this kind of possibilities?