This repository has been archived on 2022-01-28. You can view files and clone it, but cannot push or open issues or pull requests.
Marlin-Artillery-M600/buildroot/share/git/mfup

49 lines
1.1 KiB
Plaintext
Raw Normal View History

#!/usr/bin/env bash
#
# mfup
#
2017-07-07 04:24:30 +02:00
# - Fetch latest upstream and replace the PR Target branch with
2017-07-03 03:43:57 +02:00
# - Rebase the (current or specified) branch on the PR Target
# - Force-push the branch to 'origin'
#
2018-03-02 03:41:01 +01:00
[[ $# < 3 && $1 != "-h" && $1 != "--help" ]] || { echo "Usage: `basename $0` [1|2] [branch]" 1>&2 ; exit 1; }
2017-07-03 03:43:57 +02:00
MFINFO=$(mfinfo "$@") || exit 1
IFS=' ' read -a INFO <<< "$MFINFO"
ORG=${INFO[0]}
FORK=${INFO[1]}
REPO=${INFO[2]}
TARG=${INFO[3]}
2017-07-03 03:43:57 +02:00
BRANCH=${INFO[4]}
2017-11-04 23:33:00 +01:00
CURR=${INFO[5]}
set -e
2017-07-03 03:43:57 +02: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 23:33:00 +01:00
if [[ $BRANCH == $CURR ]] || git checkout $BRANCH; then
if git rebase upstream/$TARG; then
2017-07-03 03:43:57 +02:00
git push -f
else
2017-11-04 23:33:00 +01:00
echo "Looks like merge conflicts. Stopping here."
exit
fi
else
2017-07-03 03:43:57 +02:00
echo "No such branch!"
fi
2017-11-29 02:01:47 +01:00
else
git reset --hard upstream/$TARG
fi
2017-07-03 03:43:57 +02:00
echo
2017-11-04 23:33:00 +01:00
[[ $BRANCH != $CURR ]] && git checkout $CURR
2017-07-03 03:43:57 +02:00
[[ $HAS_STASH == 1 ]] && git stash pop