diff options
Diffstat (limited to 'lib/git/lib.rb')
-rw-r--r-- | lib/git/lib.rb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/git/lib.rb b/lib/git/lib.rb index 8003336..71f960a 100644 --- a/lib/git/lib.rb +++ b/lib/git/lib.rb @@ -434,6 +434,13 @@ module Git command('checkout', arr_opts) end + + def checkout_file(version, file) + arr_opts = [] + arr_opts << version.to_s + arr_opts << file.to_s + command('checkout', arr_opts) + end def merge(branch, message = nil) arr_opts = [] |