This commit is contained in:
Milan Hauth 2023-11-15 12:31:09 +01:00
parent b0c77288b8
commit 5f7e9ab6ed
1 changed files with 3 additions and 0 deletions

View File

@ -58,6 +58,9 @@ for remote in $(git remote show); do
if [[ " $ignore_remotes " =~ " $remote " ]]; then
continue
fi
if echo "$remote" | grep -q readonly; then
continue
fi
git push $remote $branches $opts || true
git push $remote $branches $opts --tags || true
done