-
-
Notifications
You must be signed in to change notification settings - Fork 5.9k
Closed
Description
- Gitea version (or commit ref): 1.7.2
- Git version: 2.20.1
- OpenSSH version: 7.9p1
- Operating system: Linux on client, Docker official image on server
- Database (use
[x]
):- PostgreSQL
- MySQL
- MSSQL
- SQLite
- Can you reproduce the bug at https://try.gitea.io:
- Yes (provide example URL)
- No
- Not relevant
- Log gist:
Description
Using the builtin SSH server, I have this in my ~/.ssh/config
on client side:
Host *
SendEnv LANG LC_*
For an unrelated reason, LC_MESSAGES
was set to an empty value. In this case all operations fail, with client side debug logs:
$ GIT_SSH_COMMAND="ssh -vvv" git clone [...]
debug1: Authentication succeeded (publickey).
Authenticated to [...].
[...]
debug1: Sending env LC_TELEPHONE = en_US.UTF-8
debug1: Sending env LC_MESSAGES =
[...]
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
Server side logs (trace level):
[...a/modules/ssh/ssh.go:64 func1()] [E] env: exit status 1
If I set LC_MESSAGES
to a non empty value, it works but the server logs makes me think some parsing is happening on server side and it fails:
[W] SSH: Invalid env arguments: '[]string{"", "LC_MESSAGES", "en_US.UTF-8"}'
[W] SSH: Invalid env arguments: '[]string{"", "LC_MONETARY", "en_US.UTF-8"}'
Screenshots
N/A