Method: Rugged::Repository#config
- Defined in:
- ext/rugged/rugged_repo.c
#config ⇒ Object
Return a Rugged::Config object representing this repository’s config.
696 697 698 699 |
# File 'ext/rugged/rugged_repo.c', line 696
static VALUE rb_git_repo_get_config(VALUE self)
{
RB_GIT_REPO_OWNED_GET(rb_cRuggedConfig, config);
}
|