Built-in Git server
RBS includes an integrated Git server so you can host your code on the same platform that builds, tests, and deploys it. No separate Git hosting service required.
Why use the built-in Git server?
- Zero-config CI: pushes automatically trigger builds on the branch server.
- Branch = server: every active branch gets a dedicated build environment.
- Faster clones: your code is already on the platform — no network round-trip to clone.
- Unified access control: one set of permissions for code, builds, and deployments.
You can also import repositories from GitHub, GitLab, or Bitbucket if you prefer an external Git host. RBS mirrors the repository and keeps it in sync.
Getting started
Create a repository
From the RBS Dashboard:
- Click New Project → Create new repository.
- Name your repository and choose visibility (public or private).
- Click Create.
Clone and push
Import an existing repository
RBS clones the external repository and sets up a mirror. You can push to either the RBS remote or the original remote — changes are synchronized.
Branch-based servers
Every active branch in your repository can have a dedicated RBS server. The server starts automatically when:
- A developer connects to the branch from their editor.
- A push is made to the branch (for CI).
- A scheduled workflow runs on the branch.
Branch lifecycle
| Event | Server state |
|---|
| First push to new branch | Server created, repo cloned, workers deployed. |
| Developer connects via editor | Server starts (if not running). |
| Push to branch | CI workers execute workflows. |
| All users disconnect | Server idles (configurable auto-shutdown). |
| Branch merged or deleted | Server decommissioned, resources cleaned up. |
Working with branches
Authentication
SSH keys
HTTPS with tokens
Access control
Manage who can access your repositories:
| Role | Read code | Write code | Manage settings | Manage members |
|---|
| Viewer | ✅ | ❌ | ❌ | ❌ |
| Developer | ✅ | ✅ | ❌ | ❌ |
| Maintainer | ✅ | ✅ | ✅ | ❌ |
| Admin | ✅ | ✅ | ✅ | ✅ |
Branch protection
Protect important branches from direct pushes:
Webhooks
Configure webhooks to notify external services:
| Event | Description |
|---|
push | Code pushed to any branch. |
pull_request | PR opened, updated, merged, or closed. |
build:completed | A build finished (success or failure). |
test:completed | Tests finished running. |
deploy:completed | A deployment finished. |
Mirroring external repositories
If you host code on GitHub, GitLab, or Bitbucket, you can set up bidirectional mirroring:
- Go to Settings → Mirrors.
- Add the external repository URL.
- Configure sync direction:
- Pull mirror: RBS pulls from the external repo (read-only import).
- Push mirror: RBS pushes changes to the external repo.
- Bidirectional: Changes sync both ways.
Git LFS support
Large files are supported via Git LFS:
LFS objects are stored on the RBS platform and accessible to all branch servers without additional downloads.