]> source.dussan.org Git - redmine.git/commitdiff
Do not query multiple times git for branch (#1435).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Mon, 17 Nov 2008 17:27:08 +0000 (17:27 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Mon, 17 Nov 2008 17:27:08 +0000 (17:27 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2043 e93f8b46-1217-0410-a6f0-8f06a7374b81

lib/redmine/scm/adapters/git_adapter.rb

index 47c19210536bb1cd62030749446b5f57f03ea4ae..a9e1dda5c01c4f2a9e48590ef99dafd24f7a9543 100644 (file)
@@ -31,8 +31,8 @@ module Redmine
           if rev != 'latest' && !rev.nil?
             cmd="#{GIT_BIN} --git-dir #{target('')} show --date=iso --pretty=fuller #{shell_quote rev} -- #{shell_quote path}" 
           else
-            branch = shellout("#{GIT_BIN} --git-dir #{target('')} branch") { |io| io.grep(/\*/)[0].strip.match(/\* (.*)/)[1] }
-            cmd="#{GIT_BIN} --git-dir #{target('')} log --date=iso --pretty=fuller -1 #{branch} -- #{shell_quote path}" 
+            @branch ||= shellout("#{GIT_BIN} --git-dir #{target('')} branch") { |io| io.grep(/\*/)[0].strip.match(/\* (.*)/)[1] }
+            cmd="#{GIT_BIN} --git-dir #{target('')} log --date=iso --pretty=fuller -1 #{@branch} -- #{shell_quote path}" 
           end
           rev=[]
           i=0