···1818Push to create is a feature that allows you to push to a repository that does not exist yet in Gitea. This is useful for automation and for allowing users to create repositories without having to go through the web interface. This feature is disabled by default.
19192020## Enabling Push To Create
2121+2122In the `app.ini` file, set `ENABLE_PUSH_CREATE_USER` to `true` and `ENABLE_PUSH_CREATE_ORG` to `true` if you want to allow users to create repositories in their own user account and in organizations they are a member of respectively. Restart Gitea for the changes to take effect. You can read more about these two options in the [Configuration Cheat Sheet]({{< relref "doc/advanced/config-cheat-sheet.en-us.md#repository-repository" >}}).
22232324## Using Push To Create
···3233git push -u origin main
3334```
34353535-This assumes you are using an SSH remote, but you can also use HTTPS remotes as well.3636+This assumes you are using an SSH remote, but you can also use HTTPS remotes as well.