summaryrefslogtreecommitdiffstats
path: root/lib/git/lib.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/git/lib.rb')
-rw-r--r--lib/git/lib.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/git/lib.rb b/lib/git/lib.rb
index 5bb2e2b..575f0d7 100644
--- a/lib/git/lib.rb
+++ b/lib/git/lib.rb
@@ -296,6 +296,10 @@ module Git
command('fetch', remote.to_s)
end
+ def push(remote, branch = 'master')
+ command('push', [remote.to_s, branch.to_s])
+ end
+
def tag_sha(tag_name)
command('show-ref', ['--tags', '-s', tag_name])
end