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.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/git/base.rb b/lib/git/base.rb
index d97948e..21578f8 100644
--- a/lib/git/base.rb
+++ b/lib/git/base.rb
@@ -185,7 +185,7 @@ module Git
self.lib.commit(message, opts)
end
- def checkout(branch, opts = {})
+ def checkout(branch = 'master', opts = {})
self.lib.checkout(branch, opts)
end
@@ -193,6 +193,10 @@ module Git
self.lib.fetch(remote)
end
+ def push(remote = 'origin', branch = 'master')
+ self.lib.push(remote, branch)
+ end
+
def merge(branch, message = 'merge')
self.lib.merge(branch, message)
end