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