Method: Git::Base#log

Defined in:
lib/git/base.rb

#log(count = 30) ⇒ Object

returns a Git::Log object with count commits



182
183
184
# File 'lib/git/base.rb', line 182

def log(count = 30)
  Git::Log.new(self, count)
end