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

20 lines
485 B
Plaintext
Raw Normal View History

#!/usr/bin/env bash
#
# mfrb
#
2017-11-04 23:33:00 +01:00
# Do "git rebase -i" against the "target" branch (bugfix-1.1.x, bugfix-2.0.x, or master)
#
2018-03-02 03:41:01 +01:00
[[ $# < 2 && $1 != "-h" && $1 != "--help" ]] || { echo "Usage: `basename $0` [1|2]" 1>&2 ; exit 1; }
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]}
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
2017-05-05 07:46:39 +02:00
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