9 lines
231 B
Markdown
9 lines
231 B
Markdown
# Gitea Create Repo - API Curl POST
|
|
|
|
```
|
|
curl -X POST -H "Authorization: token YOUR_API_TOKEN" \
|
|
-H "Content-Type: application/json" \
|
|
-d '{"name": "new-repo", "private": true}' \
|
|
https://gitea.example.com/api/v1/user/repos
|
|
```
|