Firmware2/buildroot/share/git/mfrb

20 lines
425 B
Plaintext
Raw Normal View History

#!/usr/bin/env bash
#
# mfrb
#
# Do "git rebase -i" against the "target" branch (RCBugFix or dev)
#
2017-07-03 03:43:57 +02:00
[[ $# == 0 ]] || { echo "Usage: `basename $0`" 1>&2 ; exit 1; }
2017-07-03 03:43:57 +02:00
MFINFO=$(mfinfo) || exit 1
IFS=' ' read -a INFO <<< "$MFINFO"
TARG=${INFO[3]}
BRANCH=${INFO[5]}
2017-05-05 07:46:39 +02:00
# If the branch isn't currently the PR target
2017-07-03 03:43:57 +02:00
if [[ $TARG != $BRANCH ]]; 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