Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'LibGit2Sharp/Core/GitCheckoutOptsWrapper.cs')
-rw-r--r--LibGit2Sharp/Core/GitCheckoutOptsWrapper.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/LibGit2Sharp/Core/GitCheckoutOptsWrapper.cs b/LibGit2Sharp/Core/GitCheckoutOptsWrapper.cs
index 26614fa9..0fba8275 100644
--- a/LibGit2Sharp/Core/GitCheckoutOptsWrapper.cs
+++ b/LibGit2Sharp/Core/GitCheckoutOptsWrapper.cs
@@ -66,12 +66,15 @@ namespace LibGit2Sharp.Core
case CheckoutFileConflictStrategy.Ours:
flags = CheckoutStrategy.GIT_CHECKOUT_USE_OURS;
break;
+
case CheckoutFileConflictStrategy.Theirs:
flags = CheckoutStrategy.GIT_CHECKOUT_USE_THEIRS;
break;
+
case CheckoutFileConflictStrategy.Merge:
flags = CheckoutStrategy.GIT_CHECKOUT_CONFLICT_STYLE_MERGE;
break;
+
case CheckoutFileConflictStrategy.Diff3:
flags = CheckoutStrategy.GIT_CHECKOUT_CONFLICT_STYLE_DIFF3;
break;