perform_git_push(options = "")protected
No documentation available.
# File lib/bundler/gem_helper.rb, line 128
def perform_git_push(options = "")
cmd = "git push #{options}"
out, code = sh_with_code(cmd)
raise "Couldn't git push. `#{cmd}' failed with the following output:\n\n#{out}\n" unless code == 0
end