15 lines
347 B
Markdown
15 lines
347 B
Markdown
# Coding Soup Recipes
|
|
|
|
A collection of random things, tips that help to remember some HOW TOs
|
|
|
|
|
|
## First one about Gitea
|
|
|
|
- reset admin password
|
|
|
|
* non-docker: gitea admin user change-password -u <username> -p <password>
|
|
|
|
* docker: docker exec -it <container ID> su git bash -c "gitea admin user change-password -u <username> -p <password>"
|
|
|
|
|