for s in *; do
    [ -d "$s" ] || continue
    pushd "$s"
    Gpush -f "$s"
    git.alt init-db "$s"
    git push
    git push --follow-tags
    popd
done
