11 lines
342 B
Markdown
11 lines
342 B
Markdown
To add a user (first admin or registration closed) :
|
|
```
|
|
podman exec --user 1000 gitea gitea admin user create --admin --username <name> --password <password> --email <email>
|
|
```
|
|
Check after upgrade :
|
|
```
|
|
podman exec --user git gitea gitea doctor --all --log-file ""
|
|
```
|
|
[Config cheat sheet](https://docs.gitea.io/en-us/config-cheat-sheet/)
|
|
|