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/mfrb

31 lines
706 B
Plaintext
Raw Normal View History

#!/usr/bin/env bash
#
# mfrb
#
2020-01-05 08:24:28 +01:00
# Do "git rebase -i" against the "target" branch (bugfix-1.1.x, bugfix-2.0.x, dev-2.1.x, or master)
#
2017-11-04 23:33:00 +01:00
MFINFO=$(mfinfo "$@") || exit 1
2017-07-03 03:43:57 +02:00
IFS=' ' read -a INFO <<< "$MFINFO"
TARG=${INFO[3]}
2017-11-04 23:33:00 +01:00
CURR=${INFO[5]}
2019-01-24 06:10:02 +01:00
IND=6
while [ $IND -lt ${#INFO[@]} ]; do
ARG=${INFO[$IND]}
case "$ARG" in
-q|--quick ) QUICK=1 ;;
-h|--help ) USAGE=1 ;;
* ) USAGE=1 ; echo "unknown option: $ARG" ;;
esac
let IND+=1
done
2020-01-05 08:24:28 +01:00
[[ $USAGE == 1 ]] && { echo "usage: `basename $0` [1|2|3]" 1>&2 ; exit 1 ; }
2019-01-24 06:10:02 +01:00
2017-05-05 07:46:39 +02:00
# If the branch isn't currently the PR target
2017-11-04 23:33:00 +01:00
if [[ $TARG != $CURR ]]; then
2019-01-24 06:10:02 +01:00
[[ $QUICK ]] || git fetch upstream
2017-07-03 03:43:57 +02:00
git rebase upstream/$TARG && git rebase -i upstream/$TARG
2017-05-05 07:46:39 +02:00
fi