Как объединить и держать голову в GIT для всех файлов

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