module Git

def self.ls_remote(location = nil, options = {})

Returns:
  • ({String=>Hash}) - the available references of the target repo.

Parameters:
  • location (String|NilClass) -- the target repository location or nil for '.'
def self.ls_remote(location = nil, options = {})
  Git::Lib.new.ls_remote(location, options)
end