Method: Rugged::Repository#remotes

Defined in:
lib/rugged/repository.rb

#remotesObject

All the remotes in the repository.

Returns a Rugged::RemoteCollection containing all the Rugged::Remote objects in the repository.


200
201
202
# File 'lib/rugged/repository.rb', line 200

def remotes
  @remotes ||= RemoteCollection.new(self)
end