我已在我的系统上设置了基于cntlm
的代理。我已经指出git通过在我的.gitconfig
文件中添加以下内容来使用此代理。
[http]
proxy = http://:@localhost:3128
但是,当我从命令行运行git clone
时,它会向我显示此错误 -
error: Failed connect to github.com:443; Connection timed out while accessing
我已经使用firefox测试了代理,但它确实有效。
如何找到有关git失败原因的更多信息?我在哪里可以看到git
客户端的日志。
答案 0 :(得分:0)
您可以尝试不使用':'的语法,并将其设置为http和https,如" How to point Git to use cntlm"
中所示git config --global https.proxy http://localhost:3128
git config --global http.proxy http://localhost:3128
您还可以运行cntlm.exe -v
查看发生了什么
以及在执行GIT_TRACE=2
之前设置git clone
。