The project I'm on has two branches, ostensibly named STABLE and DEV.
There's been some divergence in a core part of project between the two branches so when merging from Stable to DEV, we're using the ours
merge strategy.
However, when pulling from Remote to DEV, we don't want to use the ours
merge strategy, otherwise we'll not get the changes we need (if I understand merge strategies correctly)
So I guess the question is: is it possible to use one merge strategy when merging branches, and a different strategy when pulling from remote.
Or is my understanding of merge strategies all wrong?