module Git

def self.ls_remote(location=nil)

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)
  Git::Lib.new.ls_remote(location)
end