Quickstart

Create a workspace, push your first repository, and open a pull request - in about five minutes.

1. Create a workspace

Sign up and create a workspace for your team. Every member you invite gets access to code, issues, chat, and docs from the same account.

2. Install the CLI

The rezee CLI is the fastest way to work with your repositories. Install it with a single command:

$ curl -fsSL https://rezee.app/install.sh | sh

Then authenticate. This opens your browser and stores a scoped access token locally:

$ rezee auth login

3. Push your first repository

Create a repository, add the remote, and push. Rezee serves git over both HTTPS and SSH.

$ rezee repo create hello
$ git remote add origin https://rezee.app/you/hello.git
$ git push -u origin main

4. Open a pull request

Branch, commit, and open a pull request without leaving the terminal. CI starts automatically on the first push.

$ git checkout -b feat/secrets
$ git push -u origin feat/secrets
$ rezee pr create -m "Add encrypted pipeline secrets"

That's it. Your pull request, its pipeline, and any linked issues now live together in one view. Next, explore the full CLI reference.