Method: Rugged::Index#conflict_cleanup

Defined in:
ext/rugged/rugged_index.c

#conflict_cleanupnil

Remove all conflicting entries (entries with a stage greater than 0) from the index.

Returns:

  • (nil)

929
930
931
932
933
934
935
936
937
# File 'ext/rugged/rugged_index.c', line 929

static VALUE rb_git_conflict_cleanup(VALUE self)
{
	git_index *index;

	Data_Get_Struct(self, git_index, index);
	git_index_conflict_cleanup(index);

	return Qnil;
}