When having content conflict when merging two branches, the solution we'd like to adopt is to take our files or their files instead of using any merge tool.
In Git command, I can use --ours and theirs git checkout --ours -- git checkout --theirs --
Does anyone know what is LibGit2Sharp equivalent of it?
The
Merge()
method accepts aMergeOptions
parameter which exposes aFileConflictStrategy
get/setter.See this test which shows how to leverage it.
Surprisingly, although this option is already available for
CherryPick
,Merge
andRevert
, this is not available yet in LibGit2Sharp forCheckout()
method.To this purpose up-for-grabs feature request #868 has been created.