Created
July 6, 2014 18:51
-
-
Save technolize/b86731d1f4dcc4da74ef to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| #!/bin/sh | |
| set -u | |
| echo "Branch name:" | |
| read BRANCH_NAME | |
| git checkout -b "$BRANCH_NAME" | |
| git commit --allow-empty -m "create wip" | |
| echo "PR Title:" | |
| read PR_TITLE | |
| gh pull-request -m "[WIP] $PR_TITLE" -b master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment