class Git::Base

Public Instance Methods

log_ancestry(from, to) click to toggle source
# File lib/gitra/git_patches.rb, line 9
def log_ancestry(from, to)
  self.lib.log_ancestry(from, to).map { |c| Git::Object::Commit.new(self, c['sha'], c) }
end
merge_base(commit1, commit2) click to toggle source
# File lib/gitra/git_patches.rb, line 5
def merge_base(commit1, commit2)
  self.lib.merge_base(commit1, commit2)
end