git checkout --theirs <pathname>

Resolve a merge conflict by accepting the "incoming" branch changes

Resolves a merge conflict by accepting the changes from the "theirs" version (typically the branch you are merging into your current branch) for the specified file.

It discards changes from the "ours" version (the branch which is the target of the merge) and updates the file to the "theirs" version.