Case 1: In case you are in a conflicted state and you want to just accept all of theirs:
$ git checkout --theirs .
$ git add .
Case 2: In case you want to do the opposite:
$ git checkout --ours .
$ git add .
Remember this method is pretty drastic, so make sure you really want to wipe everything out like this before doing it.