From 3cb57d82c301e9b8a16f30f468401e3007845bb7 Mon Sep 17 00:00:00 2001 From: scott Chacon Date: Sun, 11 Nov 2007 11:37:51 -0800 Subject: changed .commit to .gcommit for consistency --- lib/git/branch.rb | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'lib/git') diff --git a/lib/git/branch.rb b/lib/git/branch.rb index cc33970..bf4d80a 100644 --- a/lib/git/branch.rb +++ b/lib/git/branch.rb @@ -1,15 +1,15 @@ module Git class Branch < Path - attr_accessor :full, :remote, :name, :current, :commit + attr_accessor :full, :remote, :name, :current @base = nil + @gcommit = nil def initialize(base, name, current = false) @remote = nil @full = name @base = base - @commit = @base.object(name) @current = current parts = name.split('/') @@ -21,5 +21,10 @@ module Git end end + def gcommit + @gcommit = @base.object(name) if !@gcommit + @gcommit + end + end end -- cgit