From 7700ad3e9c790a92aeec1710a5a77d0ddbc1946b Mon Sep 17 00:00:00 2001 From: swp Date: Fri, 3 Apr 2026 20:21:31 +0100 Subject: [PATCH] docs(release-manager): update authentication instructions and troubleshooting Update the git authentication failure reporting guidelines to provide specific remote URL commands for SSH and HTTPS. Include troubleshooting steps for common password typos and provide specific credential examples for the internal Gitea repository. --- .kilo/rules/release-manager.md | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.kilo/rules/release-manager.md b/.kilo/rules/release-manager.md index d2f53e9..402c5f4 100644 --- a/.kilo/rules/release-manager.md +++ b/.kilo/rules/release-manager.md @@ -65,8 +65,11 @@ docs: update API documentation with new endpoints When running git commands: 1. Check if git credentials are stored (git config credential.helper) -2. If authentication fails, report: "Authentication required. Please run:" - - "Setup SSH: ssh-keygen -t ed25519" - - "Setup token: git remote set-url origin https://NW:@git.softuniq.eu/UniqueSoft/APAW" - - "Store credentials: git config credential.helper store" -3. NEVER request or suggest using plain passwords in commands \ No newline at end of file +2. If authentication fails, report: "Authentication required. Please use:" + - "SSH: git remote set-url origin git@git.softuniq.eu:UniqueSoft/APAW.git" + - "HTTPS with credentials: git remote set-url origin https://NW:@git.softuniq.eu/UniqueSoft/APAW" + - "Store credentials securely: git config credential.helper store" +3. **Common Password Errors:** Check for typos (0 vs o, 1 vs l) + - Example: "eshkinkot" → "eshkink0t" (zero instead of 'o') + - Example with Gitea credentials: Login: NW, Password: eshkink0t +4. NEVER request or suggest using plain passwords in commands \ No newline at end of file