I've got a bare repo setup with the following branches:
dev
*master
stage
prod
I've cloned this to a working copy and issued the following commands:
git checkout -b stage remotes/origin/stage
git checkout -b dev remotes/origin/dev
What I need to do is push the entire contents of my staging branch into my dev branch. Basically, this is a first-time setup, and I started with pushing production code into a staging branch (worked flawlessly) and now I'm pushing my staging code into the dev branch.
The problem I'm encountering is a merge conflict on binary files. How do I tell git to not even LOOK at merge-conflicts, and instead just straight up copy over the contents of the stage branch into the dev branch?