Sha256: 222d52d97e765d47d89da1d9f81992244c6dcc4b5db12cf699e29276226c8405

Contents?: true

Size: 613 Bytes

Versions: 1

Compression:

Stored size: 613 Bytes

Contents

# frozen_string_literal: true

module GitContext
  module Commands
    class Help < Base
      USAGE = <<~USAGE
        Usage:
        git-context setup # initialize git-context in your home directory
        git-context create_profile # create a new profile to be used in gitconfig
        git-context create_context # create a new context to use a profile in git repositories within a directory
        git-context delete_profile # delete a stored git-context profile
        git-context list_profile # list stored git-context profiles
      USAGE

      def call
        puts USAGE
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
git_context-0.3.0 lib/git_context/commands/help.rb