From be47ad8aea4f854fc2d6773456fb28f3e9f519e7 Mon Sep 17 00:00:00 2001 From: scott Chacon Date: Fri, 16 Nov 2007 11:48:45 -0800 Subject: added checkout_index --- lib/git/base.rb | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'lib/git/base.rb') diff --git a/lib/git/base.rb b/lib/git/base.rb index 4c5cdf5..2986864 100644 --- a/lib/git/base.rb +++ b/lib/git/base.rb @@ -361,6 +361,10 @@ module Git with_index(temp_path, &blk) end + def checkout_index(opts = {}) + self.lib.checkout_index(opts) + end + def read_tree(treeish, opts = {}) self.lib.read_tree(treeish, opts) end @@ -382,6 +386,7 @@ module Git branch(branch).update_ref(commit) end + def ls_files self.lib.ls_files end -- cgit