You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
987 B
37 lines
987 B
#!/usr/bin/env bash |
|
# |
|
# mfpr [1|2] |
|
# |
|
# Make a PR targeted to MarlinFirmware/[repo] |
|
# |
|
|
|
[[ $# < 2 && $1 != "-h" && $1 != "--help" ]] || { echo "usage: `basename $0` [1|2] [branch]" 1>&2 ; exit 1; } |
|
|
|
MFINFO=$(mfinfo "$@") || exit 1 |
|
IFS=' ' read -a INFO <<< "$MFINFO" |
|
ORG=${INFO[0]} |
|
FORK=${INFO[1]} |
|
REPO=${INFO[2]} |
|
TARG=${INFO[3]} |
|
BRANCH=${INFO[4]} |
|
OLDBRANCH=${INFO[5]} |
|
|
|
[[ $BRANCH == $TARG ]] && { echo "Can't create a PR from the PR Target ($BRANCH). Make a copy first." 1>&2 ; exit 1; } |
|
|
|
[[ $BRANCH != $OLDBRANCH ]] && { git checkout $BRANCH || exit 1; } |
|
|
|
# See if it's been pushed yet |
|
if [ -z "$(git branch -vv | grep ^\* | grep \\[origin)" ]; then firstpush; fi |
|
|
|
OPEN=$( which gnome-open xdg-open open | head -n1 ) |
|
URL="https://github.com/$ORG/$REPO/compare/$TARG...$FORK:$BRANCH?expand=1" |
|
|
|
if [ -z "$OPEN" ]; then |
|
echo "Can't find a tool to open the URL:" |
|
echo $URL |
|
else |
|
echo "Opening a New PR Form..." |
|
"$OPEN" "$URL" |
|
fi |
|
|
|
[[ $BRANCH != $OLDBRANCH ]] && git checkout $OLDBRANCH
|
|
|