From 7dc56e180632790d04a3c2dfd526e8bced746c94 Mon Sep 17 00:00:00 2001 From: scott Chacon Date: Mon, 19 Nov 2007 14:32:53 -0800 Subject: added some TODO notes, the History.txt entry i forgot and a way to attach a custom logger to Git --- lib/git.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/git.rb') diff --git a/lib/git.rb b/lib/git.rb index 7c13d1a..02a3b8a 100644 --- a/lib/git.rb +++ b/lib/git.rb @@ -48,8 +48,8 @@ module Git # it expects not to be able to use a working directory # so you can't checkout stuff, commit things, etc. # but you can do most read operations - def self.bare(git_dir) - Base.bare(git_dir) + def self.bare(git_dir, options = {}) + Base.bare(git_dir, options) end # open an existing git working directory -- cgit