Method: Rugged::Repository#head_detached?
- Defined in:
- ext/rugged/rugged_repo.c
permalink #head_detached? ⇒ Boolean
Return whether the HEAD
of a repository is detached or not.
1472 1473 1474 1475 |
# File 'ext/rugged/rugged_repo.c', line 1472
static VALUE rb_git_repo_head_detached(VALUE self)
{
RB_GIT_REPO_GETTER(head_detached);
}
|