Forgejo supports 'Push to Create', a feature that allows users and organizations to create repositories from the command line as follows:
git remote add origin https://codeberg.org/bramh/new-repo.git
git push
This feature requires the ENABLE_PUSH_CREATE_USER setting to be set to true (and ENABLE_PUSH_CREATE_ORG to enable the feature for organizations too). This feature is currently not enabled, as the commands above give the following output:
Forgejo: Push to create is not enabled for users.
I am interested in using this feature to optimize my workflow, is this something that can be enabled on Codeberg?
### Comment
Forgejo supports ['Push to Create'](https://forgejo.org/docs/v1.19/user/push-to-create/#push-to-create), a feature that allows users and organizations to create repositories from the command line as follows:
```
git remote add origin https://codeberg.org/bramh/new-repo.git
git push
```
This feature requires the `ENABLE_PUSH_CREATE_USER` setting to be set to true (and `ENABLE_PUSH_CREATE_ORG` to enable the feature for organizations too). This feature is currently not enabled, as the commands above give the following output:
```
Forgejo: Push to create is not enabled for users.
```
I am interested in using this feature to optimize my workflow, is this something that can be enabled on Codeberg?