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# Not accepting anonymous contribution
8 9If you want to fine-tune who can do what a simple way is to say that all users not registered has no branch in `.gitroot/users.yml`:
1011```yml
12noAnonymous:
13branches:
14 - name: "*"15users: []
16```1718You will need to add each ssh key of your contributors see [add an user](./add_user.md) to do it.
1920> Be sure to have at least one user in main branch to be able to modify it, else no one will be able to modify anything.