From eb666febb678060a454d6e0bf1478ca6860c6fea Mon Sep 17 00:00:00 2001 From: AzuTear Date: Thu, 9 Jul 2026 10:25:40 +0200 Subject: [PATCH] Document Gitea authentication setup --- docs/GITEA_AUTH.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 docs/GITEA_AUTH.md diff --git a/docs/GITEA_AUTH.md b/docs/GITEA_AUTH.md new file mode 100644 index 0000000..3412cc1 --- /dev/null +++ b/docs/GITEA_AUTH.md @@ -0,0 +1,30 @@ +# Gitea authentication + +Remote: + +```text +https://git.noveria.net/bao/genshin-assistant.git +``` + +Personal access tokens can be managed here: + +```text +https://git.noveria.net/user/settings/applications +``` + +Use the token as the HTTPS password when Git asks for credentials. Do not save +tokens, passwords, or generated credentials in this repository. + +On Windows, this repository uses Git Credential Manager from the system Git +config: + +```powershell +git config --show-origin --get-all credential.helper +``` + +If authentication breaks again, refresh the saved credential in Windows +Credential Manager or let Git Credential Manager prompt again during: + +```powershell +git push origin main +```