Nightly: in case of conflicts, add "our" changes on top

This commit is contained in:
Frank Morgner 2021-03-04 18:25:51 +01:00
parent 26fac9592d
commit 4512676795
1 changed files with 1 additions and 1 deletions

View File

@ -30,6 +30,6 @@ i=0
while [ $i -le 10 ] && ! git push --quiet --set-upstream origin "${BRANCH}"
do
sleep $[ ( $RANDOM % 32 ) + 1 ]s
git pull --rebase origin "${BRANCH}"
git pull --rebase origin --strategy-option ours "${BRANCH}"
i=$(( $i + 1 ))
done