Class: Papa::Command::Git::ResetHard

Inherits:
Base
  • Object
show all
Defined in:
lib/papa/command/git/reset_hard.rb

Instance Attribute Summary

Attributes inherited from Base

#command, #exit_status, #silent, #stderr, #stdout

Instance Method Summary collapse

Methods inherited from Base

#cleanup, #failed?, #failure_message, #run, #success?

Constructor Details

#initialize(remote, branch_name) ⇒ ResetHard

Returns a new instance of ResetHard.



7
8
9
10
# 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