mirror of
https://github.com/abapGit/abapGit.git
synced 2025-04-30 11:46:38 +08:00
15 lines
366 B
Bash
15 lines
366 B
Bash
curl -X 'POST' \
|
|
'http://localhost:3050/api/v1/user/repos' \
|
|
-H 'accept: application/json' \
|
|
-H 'authorization: Basic YWJhcGdpdDphYmFwZ2l0' \
|
|
-H 'Content-Type: application/json' \
|
|
-d '{
|
|
"auto_init": true,
|
|
"default_branch": "main",
|
|
"description": "description",
|
|
"license": "MIT",
|
|
"name": "repo1",
|
|
"private": false,
|
|
"trust_model": "default"
|
|
}'
|