mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 06:46:38 +00:00
scripts: Use git pull --rebase
No point introducing redundant merge commits.
This commit is contained in:
parent
0d5ddc96f2
commit
f6e4ca0d2d
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue