class Git::CommandLine

def initialize(env, binary_path, global_opts, logger)

Parameters:
  • logger (Logger) -- the logger to use
  • global_opts (Array) -- global options to pass to git
  • env (Hash) -- environment variables to set
def initialize(env, binary_path, global_opts, logger)
  @env = env
  @binary_path = binary_path
  @global_opts = global_opts
  @logger = logger
end