module MGit::System

Public Class Methods

git(cmd, opts = {}) click to toggle source
# File lib/mgit/system.rb, line 60
def self.git(cmd, opts = {})
  GitCommand.new(cmd, opts)
end
run(cmd, opts = {}) click to toggle source
# File lib/mgit/system.rb, line 64
def self.run(cmd, opts = {})
  SystemCommand.new(cmd, opts)
end