Plain brew log shows the entire Homebrew git log

This commit is contained in:
Max Howell 2010-03-10 13:00:41 +00:00
parent c29219e27c
commit de08865203

View File

@ -278,7 +278,9 @@ begin
when 'log' when 'log'
Dir.chdir HOMEBREW_REPOSITORY Dir.chdir HOMEBREW_REPOSITORY
exec "git", "log", ARGV.formulae.first.path, *ARGV.options args = ARGV.options
args.unshift ARGV.formulae.first.path unless ARGV.named.empty?
exec "git", "log", *args
when 'uses' when 'uses'
# For each formula given, show which other formulas depend on it. # For each formula given, show which other formulas depend on it.