Sha256: 43cbad174cb5af6e36fd61af6c7fd522194f739e8b0eb057e90b5289ab1d382d
Contents?: true
Size: 327 Bytes
Versions: 33
Compression:
Stored size: 327 Bytes
Contents
require 'thor' require 'gitx' require 'gitx/cli/base_command' module Gitx module Cli class ShareCommand < BaseCommand desc 'share', 'Share the current branch in the remote repository' def share run_git_cmd 'push', 'origin', current_branch.name run_git_cmd 'track' end end end end
Version data entries
33 entries across 33 versions & 1 rubygems