Marlin_Firmware/buildroot/share/git/mfup

49 lines
1.1 KiB
Plaintext
Raw Normal View History

#!/usr/bin/env bash
#
# mfup
#
2017-07-06 21:24:30 -05:00
# - Fetch latest upstream and replace the PR Target branch with
2017-07-02 20:43:57 -05:00
# - Rebase the (current or specified) branch on the PR Target
# - Force-push the branch to 'origin'
#
2019-01-23 23:05:42 -06:00
[[ $# < 3 && $1 != "-h" && $1 != "--help" ]] || { echo "usage: `basename $0` [1|2] [branch]" 1>&2 ; exit 1; }
2017-07-02 20:43:57 -05:00
MFINFO=$(mfinfo "$@") || exit 1
IFS=' ' read -a INFO <<< "$MFINFO"
ORG=${INFO[0]}
FORK=${INFO[1]}
REPO=${INFO[2]}
TARG=${INFO[3]}
2017-07-02 20:43:57 -05:00
BRANCH=${INFO[4]}
2017-11-04 17:33:00 -05:00
CURR=${INFO[5]}
set -e
2017-07-02 20:43:57 -05:00
# Prevent accidental loss of current changes
[[ $(git stash) != "No local "* ]] && HAS_STASH=1
echo "Fetching upstream ($ORG/$REPO)..."
git fetch upstream
if [[ $BRANCH != $TARG ]]; then
echo ; echo "Rebasing $BRANCH on $TARG..."
2017-11-04 17:33:00 -05:00
if [[ $BRANCH == $CURR ]] || git checkout $BRANCH; then
if git rebase upstream/$TARG; then
2017-07-02 20:43:57 -05:00
git push -f
else
2017-11-04 17:33:00 -05:00
echo "Looks like merge conflicts. Stopping here."
exit
fi
else
2017-07-02 20:43:57 -05:00
echo "No such branch!"
fi
2017-11-28 19:01:47 -06:00
else
git reset --hard upstream/$TARG
fi
2017-07-02 20:43:57 -05:00
echo
2017-11-04 17:33:00 -05:00
[[ $BRANCH != $CURR ]] && git checkout $CURR
2017-07-02 20:43:57 -05:00
[[ $HAS_STASH == 1 ]] && git stash pop