class Papa::Command::Git::Pull
Public Class Methods
new(remote, branch_name)
click to toggle source
Calls superclass method
Papa::Command::Base::new
# File lib/papa/command/git/pull.rb, line 7 def initialize(remote, branch_name) command = "git pull #{remote} #{branch_name}" super(command) end