Sha256: 25c66161653b6b36b07483c6634d7d923fe5d19f2afbeb9bcb1b47a486cdbd19
Contents?: true
Size: 271 Bytes
Versions: 12
Compression:
Stored size: 271 Bytes
Contents
require 'papa/command/base' module Papa module Command module Git class Pull < Command::Base def initialize(remote, branch_name) command = "git pull #{remote} #{branch_name}" super(command) end end end end end
Version data entries
12 entries across 12 versions & 1 rubygems