Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@
- [Domain names and DNS](./infra/docs/dns.md)
- [docs.rs](./infra/docs/docs-rs.md)
- [ECS services management](./infra/docs/ecs-services.md)
- [Git Forges](./infra/docs/forges.md)
- [Monitoring](./infra/docs/monitoring.md)
- [Renovate](./infra/docs/renovate.md)
- [rust-bots server](./infra/docs/rust-bots.md)
Expand Down
37 changes: 37 additions & 0 deletions src/infra/docs/forges.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Git Forges

The Rust infrastructure team actually maintains two Git forges with distinct purposes:
[Github] and [Gitlab].

## Github

Github has been the forge of choice for Rust development for many years, and officially,
**it is the only Git forge the Rust Infrastructure team supports for Rust development**.
We provide and maintain features such as:

- Infrastructure as Code (e.g. [team])
- Custom bots (e.g. `triagebot`, `rfcbot`, `bors`, etc)
- Continuous Integration (Github Actions)
- Continuous Deployment (e.g. over AWS)
- Automatic dependency updates
- and many others

## Gitlab

In 2026, the Rust Infrastructure team started supporting some **read-only**
repository mirrors on Gitlab.

We leverage built-in [Gitlab mirroring] capabilities
to sync key repositories `github/rust-lang` and `gitlab/rust-lang`. The
[sync schedule] is not configurable and it's managed by Gitlab infrastructure, and it
syncs **only Git commits** between these two forges. There are no plans to sync other
contents between Github and Gitlab, such as issues and pull requests.

These mirrors might serve as an alternative to fetch out recent code in case Git operations
are down for Github, or in case Github is not available for some reason.

[Github]: https://github.com/rust-lang
[Gitlab]: https://gitlab.com/rust-lang/rust
[team]: https://github.com/rust-lang/team
[Gitlab mirroring]: https://docs.gitlab.com/user/project/repository/mirror
[sync schedule]: https://docs.gitlab.com/user/project/repository/mirror/pull/#how-pull-mirroring-works
Loading