无法克隆 Git 存储库:无效的文件描述符

Unable to clone Git repo: Invalid file descriptor

我正在尝试克隆 Git 存储库。在工作中,我们正在使用具有身份验证的代理。

我执行的设置代理设置的命令:

git config --global http.proxy http://username:password@proxy-link.nl:port-number
git config --global https.proxy http://username:password@proxy-link.nl:port-number

但这无济于事,因为我收到以下错误:Unable to access 'https://github.com/...': Invalid file descriptor

当我更改代理设置以便我不必使用我的身份验证时它有效..喜欢:

git config --global http.proxy http://proxy-link.nl:other-port-number
git config --global https.proxy http://proxy-link.nl:other-port-number

有人知道如何使用带有身份验证的代理吗?

我一个月前通过添加如下所示的 proxyAuthMethod 顺便修复了它:

git config --global http.proxyAuthMethod 'basic'git config --global https.proxyAuthMethod 'basic'