|
@ -6,17 +6,14 @@ |
|
|
# |
|
|
# |
|
|
# - Remote (upstream) Org name (MarlinFirmware) |
|
|
# - Remote (upstream) Org name (MarlinFirmware) |
|
|
# - Remote (origin) Org name (your Github username) |
|
|
# - Remote (origin) Org name (your Github username) |
|
|
# - Repo Name (Marlin, MarlinDev, MarlinDocumentation) |
|
|
# - Repo Name (Marlin, MarlinDocumentation) |
|
|
# - PR Target branch (bugfix-1.1.x, bugfix-2.0.x, or master) |
|
|
# - PR Target branch (bugfix-1.1.x, bugfix-2.0.x, etc.) |
|
|
# - Branch Arg (the branch argument or current branch) |
|
|
# - Branch Arg (the branch argument or current branch) |
|
|
# - Current Branch |
|
|
# - Current Branch |
|
|
# |
|
|
# |
|
|
|
|
|
|
|
|
usage() { |
|
|
# usage() { echo "Usage: `basename $0` [1|2] [branch]" 1>&2 ; } |
|
|
echo "Usage: `basename $0` [1|2] [branch]" 1>&2 |
|
|
# [[ $# < 3 && $1 != "-h" && $1 != "--help" ]] || { usage; exit 1; } |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
[[ $# < 3 && $1 != "-h" && $1 != "--help" ]] || { usage; exit 1; } |
|
|
|
|
|
|
|
|
|
|
|
CURR=$(git branch 2>/dev/null | grep ^* | sed 's/\* //g') |
|
|
CURR=$(git branch 2>/dev/null | grep ^* | sed 's/\* //g') |
|
|
[[ -z $CURR ]] && { echo "No git repository here!" 1>&2 ; exit 1; } |
|
|
[[ -z $CURR ]] && { echo "No git repository here!" 1>&2 ; exit 1; } |
|
@ -28,30 +25,35 @@ REPO=$(git remote get-url upstream 2>/dev/null | sed -E 's/.*\/(.*)\.git/\1/') |
|
|
ORG=$(git remote get-url upstream 2>/dev/null | sed -E 's/.*[\/:](.*)\/.*$/\1/') |
|
|
ORG=$(git remote get-url upstream 2>/dev/null | sed -E 's/.*[\/:](.*)\/.*$/\1/') |
|
|
[[ $ORG == MarlinFirmware ]] || { echo "`basename $0`: Not a Marlin repository." 1>&2 ; exit 1; } |
|
|
[[ $ORG == MarlinFirmware ]] || { echo "`basename $0`: Not a Marlin repository." 1>&2 ; exit 1; } |
|
|
|
|
|
|
|
|
case "$REPO" in |
|
|
|
|
|
Marlin ) TARG=bugfix-1.1.x ; |
|
|
|
|
|
[[ $# > 0 ]] && [[ $1 == 2 ]] && TARG=bugfix-2.0.x |
|
|
|
|
|
;; |
|
|
|
|
|
MarlinDocumentation ) TARG=master ;; |
|
|
|
|
|
esac |
|
|
|
|
|
|
|
|
|
|
|
FORK=$(git remote get-url origin 2>/dev/null | sed -E 's/.*[\/:](.*)\/.*$/\1/') |
|
|
FORK=$(git remote get-url origin 2>/dev/null | sed -E 's/.*[\/:](.*)\/.*$/\1/') |
|
|
|
|
|
|
|
|
# BRANCH can be given as the last argument |
|
|
# Defaults if no arguments given |
|
|
case "$#" in |
|
|
BRANCH=$CURR |
|
|
0 ) BRANCH=$CURR ;; |
|
|
INDEX=1 |
|
|
1 ) |
|
|
|
|
|
case "$1" in |
|
|
while [[ $# -gt 0 ]]; do |
|
|
1|2) BRANCH=$CURR ;; |
|
|
opt="$1" ; shift ; val="$1" |
|
|
*) BRANCH=$1 ;; |
|
|
|
|
|
esac |
|
|
IFS='=' read -a PARTS <<<"$opt" |
|
|
;; |
|
|
[[ "${PARTS[1]}" != "" ]] && { HAS_EQUALS=1 ; opt="${PARTS[0]}" ; val="${PARTS[1]}" ; } |
|
|
2 ) |
|
|
|
|
|
case "$1" in |
|
|
GOODVAL=1 |
|
|
1|2) BRANCH=$2 ;; |
|
|
if [[ "$val" =~ ^-{1,2}.* || ! "$opt" =~ ^-{1,2}.* ]]; then |
|
|
*) usage ; exit 1 ;; |
|
|
GOODVAL=0 |
|
|
esac |
|
|
val="" |
|
|
;; |
|
|
fi |
|
|
|
|
|
|
|
|
|
|
|
case "$opt" in |
|
|
|
|
|
-*|--*) MORE="$MORE$opt " ; [[ $HAS_EQUALS ]] && MORE="$MORE=$val" ;; |
|
|
|
|
|
1|2) INDEX=$opt ;; |
|
|
|
|
|
*) BRANCH="$opt" ;; |
|
|
|
|
|
esac |
|
|
|
|
|
|
|
|
|
|
|
done |
|
|
|
|
|
|
|
|
|
|
|
case "$REPO" in |
|
|
|
|
|
Marlin ) TARG=bugfix-1.1.x ; [[ $INDEX == 2 ]] && TARG=bugfix-2.0.x ;; |
|
|
|
|
|
MarlinDocumentation ) TARG=master ;; |
|
|
esac |
|
|
esac |
|
|
|
|
|
|
|
|
echo "$ORG $FORK $REPO $TARG $BRANCH $CURR" |
|
|
echo "$ORG $FORK $REPO $TARG $BRANCH $CURR $MORE" |
|
|