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.rb8
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/git/lib.rb b/lib/git/lib.rb
index 1aaf131..2998194 100644
--- a/lib/git/lib.rb
+++ b/lib/git/lib.rb
@@ -520,8 +520,12 @@ module Git
command('fetch', remote.to_s)
end
- def push(remote, branch = 'master')
- command('push', [remote.to_s, branch.to_s])
+ def push(remote, branch = 'master', opts = {})
+ arr_opts = []
+ arr_opts << "--force" if opts[:force]
+ arr_opts << remote.to_s
+ arr_opts << branch.to_s
+ command('push', arr_opts)
end
def tag_sha(tag_name)