Method: Rugged::Repository#branches

Defined in:
lib/rugged/repository.rb

#branchesObject

All the branches in the repository

Returns a BranchCollection containing Rugged::Branch objects

[View source]

207
208
209
# File 'lib/rugged/repository.rb', line 207

def branches
  @branches ||= BranchCollection.new(self)
end