Como mesclar e manter a cabeça no git para todos os arquivos

git checkout --ours -- <paths>
# or
git checkout --theirs -- <paths>
DreamCoder