2016-04-19 00:18:35 -04:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
#
|
|
|
|
# mfrb
|
|
|
|
#
|
2017-11-04 18:33:00 -04:00
|
|
|
# Do "git rebase -i" against the "target" branch (bugfix-1.1.x, bugfix-2.0.x, or master)
|
2016-04-19 00:18:35 -04:00
|
|
|
#
|
|
|
|
|
2018-03-01 21:41:01 -05:00
|
|
|
[[ $# < 2 && $1 != "-h" && $1 != "--help" ]] || { echo "Usage: `basename $0` [1|2]" 1>&2 ; exit 1; }
|
2016-04-19 00:18:35 -04:00
|
|
|
|
2017-11-04 18:33:00 -04:00
|
|
|
MFINFO=$(mfinfo "$@") || exit 1
|
2017-07-02 21:43:57 -04:00
|
|
|
IFS=' ' read -a INFO <<< "$MFINFO"
|
|
|
|
TARG=${INFO[3]}
|
2017-11-04 18:33:00 -04:00
|
|
|
CURR=${INFO[5]}
|
2016-04-19 00:18:35 -04:00
|
|
|
|
2017-05-05 01:46:39 -04:00
|
|
|
# If the branch isn't currently the PR target
|
2017-11-04 18:33:00 -04:00
|
|
|
if [[ $TARG != $CURR ]]; then
|
2017-05-05 01:46:39 -04:00
|
|
|
git fetch upstream
|
2017-07-02 21:43:57 -04:00
|
|
|
git rebase upstream/$TARG && git rebase -i upstream/$TARG
|
2017-05-05 01:46:39 -04:00
|
|
|
fi
|