summaryrefslogtreecommitdiffstats
path: root/lib/git/branch.rb
blob: 8f8953bb2074dc861ac16cb00d20607bac760428 (plain)
1
2
3
4
5
6
7
8
9
10
11
module Git
  class Branch < Path
    
    @base = nil
    
    def initialize(base, name)
      @base = base
    end
    
  end
end