curl --request PUT \
--url http://localhost:3000/api/v1/git/settings \
--header 'Content-Type: application/json' \
--cookie nut-session= \
--data '
{
"user": {
"name": "<string>",
"email": "jsmith@example.com"
},
"defaultBranch": "<string>",
"autoCommit": true,
"signCommits": true
}
'