We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In gitconfig a default proxy is set and an exemption is made for a local server:
[http] proxy = http://:@<enterprise-proxy> [http "https://<git-server-on-lan>"] proxy =
This works in git but not in GCMC.
The error is in: https://github.com/microsoft/Git-Credential-Manager-Core/blob/540a39816534e6481eaea35fe706eaa7eeb45fd8/src/shared/Microsoft.Git.CredentialManager/Settings.cs#L431-L445
GetSettingValues returns ["", "http://:@<enterprise-proxy>"].
GetSettingValues
["", "http://:@<enterprise-proxy>"]
The first value is empty, so Uri.TryCreate returns false, and thus the next value is used.
Uri.TryCreate
A workaround is to set NO_PROXY.
NO_PROXY
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
In gitconfig a default proxy is set and an exemption is made for a local server:
This works in git but not in GCMC.
The error is in:
https://github.com/microsoft/Git-Credential-Manager-Core/blob/540a39816534e6481eaea35fe706eaa7eeb45fd8/src/shared/Microsoft.Git.CredentialManager/Settings.cs#L431-L445
GetSettingValues
returns["", "http://:@<enterprise-proxy>"]
.The first value is empty, so
Uri.TryCreate
returns false, and thus the next value is used.A workaround is to set
NO_PROXY
.The text was updated successfully, but these errors were encountered: