Hi, I've been playing around with a script to speed up pull req sends and I've come up with this for OSX:
#!/bin/sh BRANCH=`git branch --no-color | sed -e '/^[^*]/d' -e 's/* \(.*\)/\1/'` open -a "Google Chrome" -g https://github.com/galderz/infinispan/pull/new/${BRANCH} Basically, takes your local branch and opens a new pull req in the current Google Chrome instance. It probably can be enhanced further, thoughts? Cheers, -- Galder Zamarreño Sr. Software Engineer Infinispan, JBoss Cache _______________________________________________ infinispan-dev mailing list [email protected] https://lists.jboss.org/mailman/listinfo/infinispan-dev
