From de08865203b1a01ab8c307217abfedff8d375390 Mon Sep 17 00:00:00 2001 From: Max Howell Date: Wed, 10 Mar 2010 13:00:41 +0000 Subject: [PATCH] Plain `brew log` shows the entire Homebrew git log --- bin/brew | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bin/brew b/bin/brew index cdb47911ed..efb88aa980 100755 --- a/bin/brew +++ b/bin/brew @@ -278,7 +278,9 @@ begin when 'log' 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' # For each formula given, show which other formulas depend on it.