Method: Rugged::Remote#fetch_refspecs

Defined in:
ext/rugged/rugged_remote.c

#fetch_refspecsObject

remote.fetch_refspecs -> array

Get the remote’s list of fetch refspecs as array.



444
445
446
447
# File 'ext/rugged/rugged_remote.c', line 444

static VALUE rb_git_remote_fetch_refspecs(VALUE self)
{
  return rb_git_remote_refspecs(self, GIT_DIRECTION_FETCH);
}