Tweak git helper scripts

This commit is contained in:
Scott Lahteine
2017-05-05 00:46:39 -05:00
parent 6876e79d42
commit d14b068147
5 changed files with 104 additions and 21 deletions

View File

@ -13,4 +13,8 @@ case "$#" in
* ) echo "Usage: `basename $0`" 1>&2 ; exit 1 ;;
esac
git rebase -i ${INFO[3]}
# If the branch isn't currently the PR target
if [[ ${INFO[4]} != ${INFO[5]} ]]; then
git fetch upstream
git rebase upstream/${INFO[3]} && git rebase -i upstream/${INFO[3]}
fi