class Papa::Command::Git::ResetHard

Public Class Methods

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