So I have my master branch, along with branch 'bob'.
I've made many changes in both and now I want merge master into bob to keep him updated. The only thing is, if there is a conflict I want it to automatically resolve to bob.
I've been recommended the following:
git checkout bob
git merge master -s ours
This does not work because I don't even get the changes from master that don't conflict.
please help!

oursmeans to get version from our branch, and not to resolve conflicts in favour of our branch. – Jakub NarÄ™bski Nov 6 at 22:50