summaryrefslogtreecommitdiffstats
path: root/lib/git/base.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/git/base.rb')
-rw-r--r--lib/git/base.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/git/base.rb b/lib/git/base.rb
index 2201eb5..a670fd8 100644
--- a/lib/git/base.rb
+++ b/lib/git/base.rb
@@ -277,6 +277,11 @@ module Git
self.lib.checkout(branch, opts)
end
+ # checks out an old version of a file
+ def checkout_file(version, file)
+ self.lib.checkout_file(version,file)
+ end
+
# fetches changes from a remote branch - this does not modify the working directory,
# it just gets the changes from the remote if there are any
def fetch(remote = 'origin')