Skip to content

Commit 7d86086

Browse files
author
Vicent Marti
committed
Merge pull request #542 from libgit2/vmg/fast-merges
Experimental fast merges branch
2 parents 617bac9 + 8b54c51 commit 7d86086

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

ext/rugged/rugged_tree.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -620,6 +620,10 @@ void rugged_parse_merge_options(git_merge_options *opts, VALUE rb_options)
620620
if (RTEST(rb_hash_aref(rb_options, CSTR2SYM("fail_on_conflict")))) {
621621
opts->tree_flags |= GIT_MERGE_TREE_FAIL_ON_CONFLICT;
622622
}
623+
624+
if (RTEST(rb_hash_aref(rb_options, CSTR2SYM("skip_reuc")))) {
625+
opts->tree_flags |= GIT_MERGE_TREE_SKIP_REUC;
626+
}
623627
}
624628
}
625629

lib/rugged/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Rugged
2-
Version = VERSION = '0.24.0b4'
2+
Version = VERSION = '0.24.0b5'
33
end

0 commit comments

Comments
 (0)