class Gitit::Git



Attributes

branches[R]
config[R]
repo[R]
status[R]

Public Class Methods

new(location) click to toggle source


# File lib/gitit/git.rb, line 24
def initialize(location)
  @repo = GitRepo.new(location)
  @config = GitConfig.new(repo)
  @status = GitStatus.new(repo)
  @branches = GitBranches.new(repo)
end