I am looking for a git command that will do merging of other branch (like develop) into mine with:
- automatic resolving conflicts,
- when there are conflicts that are not possible to resolve with automatic merge, then take my version of changes.
I tried using commands like git merge -s ours
but it then takes my changes in all conflicts. And this is not what I want. If for example version of package that I didn't change has been updated on the branch that I am merging into mine, I want obviously this package to be updated.
Any help here much appreciated!