Sha256: 423d3c52e145fda20291248a248e2a182949ce6c3137300cd75354dc953085b3
Contents?: true
Size: 266 Bytes
Versions: 12
Compression:
Stored size: 266 Bytes
Contents
require 'papa/command/base' module Papa module Command module Git class BranchDelete < Command::Base def initialize(branch_name) command = "git branch -D #{branch_name}" super(command) end end end end end
Version data entries
12 entries across 12 versions & 1 rubygems