Skip to content

Instantly share code, notes, and snippets.

@rubyisbeautiful
Created May 2, 2016 15:25
Show Gist options
  • Save rubyisbeautiful/319607519867df6b57fbd8d87927f40b to your computer and use it in GitHub Desktop.
Save rubyisbeautiful/319607519867df6b57fbd8d87927f40b to your computer and use it in GitHub Desktop.
git push and open PR
#!/usr/bin/env ruby
unless RUBY_PLATFORM =~ /darwin/i
puts 'This really only works on Mac I think'
exit 0
end
output = `git #{ARGV.join(' ').chomp} 2>&1`
if match = output.match(/(https:\/\/git.sabre.com\/.*compare\/.*$)/)
`open #{match[1]}`
end
puts output
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment