Created
April 10, 2014 16:32
-
-
Save devongovett/10399980 to your computer and use it in GitHub Desktop.
Bash script to make a pull request from the current git repository. Tries the upstream remote if possible, otherwise uses origin.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# put this in your .bash_profile | |
pull_request() { | |
to_branch=$1 | |
if [ -z $to_branch ]; then | |
to_branch="master" | |
fi | |
# try the upstream branch if possible, otherwise origin will do | |
upstream=$(git config --get remote.upstream.url) | |
origin=$(git config --get remote.origin.url) | |
if [ -z $upstream ]; then | |
upstream=$origin | |
fi | |
to_user=$(echo $upstream | sed -e 's/.*[\/:]\([^/]*\)\/[^/]*$/\1/') | |
from_user=$(echo $origin | sed -e 's/.*[\/:]\([^/]*\)\/[^/]*$/\1/') | |
repo=$(basename `git rev-parse --show-toplevel`) | |
from_branch=$(git rev-parse --abbrev-ref HEAD) | |
open "https://github.com/$to_user/$repo/pull/new/$to_user:$to_branch...$from_user:$from_branch" | |
} | |
# usage | |
pull_request # PR to master | |
pull_request other_branch # PR to other_branch |
Similar: https://github.com/wjmelements/scripts#cpr
Except that the pull request is edited in your $EDITOR
instead of the browser, and it uses the github API.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Very nice!