Git hosting for
the modern stack.

Replicated. Fast. Yours.

$ git push mz main
enumerating objects: 47, done.
counting objects: 100% (47/47), done.
writing objects: 100% (31/31), 4.2 KiB
→ replicating to 3 nodes ··· done (23ms)
→ ref updated: refs/heads/main
https://mz.dev/acme/api main → main
01

How it works

A stateless gateway coordinates writes. Peer nodes store your repositories on local NVMe and replicate across the cluster. Every push is acknowledged only after all nodes confirm.

    ┌──────────────┐           ┌──────────────┐
    │              │           │   peer-01    │──── NVMe
    │   gateway    │─────────▶ │   peer-02    │──── NVMe
    │              │           │   peer-03    │──── NVMe
    └──────────────┘           └──────────────┘
     coordination               storage nodes
02

Why monozeit

FAST

Sub-50ms pushes. NVMe storage with zero cold starts.

REPLICATED

Every write hits 3 nodes before it's acknowledged.

YOURS

Self-host the whole stack. No vendor lock-in. Git-native.

03

Get started

Install the CLI, authenticate, and push your first repo in under a minute.

$ curl -fsSL https://monozeit.dev/install.sh | sh
$ mz auth login
$ mz repo create my-app
$ git remote add mz https://mz.dev/you/my-app.git
$ git push mz main