Method: Rugged::Repository#index
- Defined in:
- ext/rugged/rugged_repo.c
permalink #index ⇒ Object
Return the default index for this repository.
667 668 669 670 |
# File 'ext/rugged/rugged_repo.c', line 667
static VALUE rb_git_repo_get_index(VALUE self)
{
RB_GIT_REPO_OWNED_GET(rb_cRuggedIndex, index);
}
|