class Capistrano::Pending::SCM::Git

Public Instance Methods

diff(from, to) click to toggle source
# File lib/capistrano/pending/scm/git.rb, line 13
def diff(from, to)
  git :diff, "#{from}..#{to}"
end
log(from, to) click to toggle source
# File lib/capistrano/pending/scm/git.rb, line 9
def log(from, to)
  git :log, "#{from}..#{to}"
end