scripts: Use git pull --rebase

No point introducing redundant merge commits.
This commit is contained in:
Arun Raghavan 2014-07-23 00:15:17 +05:30
parent 0d5ddc96f2
commit f6e4ca0d2d

View file

@ -35,12 +35,12 @@ for m in $CORE $MODULES $EXTRA_MODULES; do
echo "+ updating $m"
cd $m
git pull
git pull --rebase
if test $? -ne 0
then
echo "$m: update (trying stash, pull, stash apply)" >> $ERROR_LOG
git stash
git pull
git pull --rebase
if test $? -ne 0
then
echo "$m: update" >> $ERROR_LOG