Created
September 5, 2013 22:25
-
-
Save lsjroberts/6457106 to your computer and use it in GitHub Desktop.
Create pull request on existing issue from HEAD
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
issue= head=HEAD base=master | |
while getopts i:h:b: opt; do | |
case $opt in | |
i) | |
issue=$OPTARG | |
;; | |
h) | |
head=$OPTARG | |
;; | |
b) | |
base=$OPTARG | |
;; | |
esac | |
done | |
origin=$(git config --get remote.origin.url) | |
githubSSH="[email protected]:" | |
githubSuffix=".git" | |
origin=${origin/$githubSSH} | |
origin=${origin/$githubSuffix} | |
curl -d "{'issue': $issue, 'head': $head, 'base': $base}" -i https://api.github.com/repos/$origin/pulls |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment