Files
git-utilities/lib/feature/branch.rb
2015-06-06 06:43:34 -04:00

12 lines
136 B
Ruby

require_relative './base'
module Feature
class Branch < Feature::Base
def execute
run_cmd "git branch"
end
end
end