Question
I have:
- A Git Repository
- A Patch (
.diff
) with several conflicts
I would like to apply the patch using a strategy (like theirs
), similar to git merge -s
. Can this be achieved using git
and/or patch
?
EDIT
The original question wasn't very clear of what I'm trying to do. I have many merge conflicts from patch --merge
, and I'd like to resolve them the same way
(similar to git merge --strategy ...
)