Comment fusionner et garder la tête dans Git pour tous les fichiers

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