module Git::Base::Factory

Public Instance Methods

branches() click to toggle source

returns a Git::Branches object of all the Git::Branch objects for this repo

# File lib/redk/capn_panda.rb, line 51
def branches
  @branches ||= Git::Branches.new(self)
end