GitRoot

craft your forge, build your project, grow your community freely
 1<!--
 2SPDX-FileCopyrightText: 2025 Romain Maneschi <romain@gitroot.dev>
 3
 4SPDX-License-Identifier: CC-BY-SA-4.0
 5-->
 6
 7# All members can write on all branches
 8
 9If you want all your registered users can write on all branches of each other add them in `.gitroot/users.yml`:
10
11```yml
12allAuthorized:
13  branches:
14    - name: "*"
15  users:
16    - pseudo: user
17      avatar: ""
18      emails:
19      - user@gitroot.com
20      ssh:
21      - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIICjrWwMnCd32Z10ZMEGT8zslAivtsFh0zj1Iss3C5Kt
22    - pseudo: "user2"
23        avatar: ""
24        emails:
25        - ""
26        ssh:
27        - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAMXujp1NVOs5n1t8KsgzJQnYSzhe+Ht9PpKlsdZqeDa
28```
29
30If `user2` create a `branch2` even `user` will be able to touch it.