class Papa::Command::Git::PushForce

Public Class Methods

new(remote, branch_name) click to toggle source
Calls superclass method Papa::Command::Base::new
# File lib/papa/command/git/push_force.rb, line 7
def initialize(remote, branch_name)
  command = "git push #{remote} #{branch_name} --force-with-lease"
  super(command)
end