Sha256: a557ab15c163a36320d53d2884df93ce8e0db4aba69b2540b14de176621b6a08
Contents?: true
Size: 495 Bytes
Versions: 12
Compression:
Stored size: 495 Bytes
Contents
require 'papa/command/base' module Papa module Command module Git class Fetch < Command::Base def initialize(remote) @remote = remote command = "git fetch #{remote}" super(command) end def failure_message super message = "Failed to fetch from #{@remote}. Please check your internet connection and try again." Helper::Output.stderr message message end end end end end
Version data entries
12 entries across 12 versions & 1 rubygems