class Git::Log

def initialize(base, max_count = 30)

Parameters:
  • max_count (Integer, Symbol, nil) -- the number of commits to return, or
  • base (Git::Base) -- the git repository object
def initialize(base, max_count = 30)
  dirty_log
  @base = base
  max_count(max_count)
end