Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要访问 Github 进行读写访问。早些时候我只是使用了普通的 http 协议,它工作得很好。但是今天这似乎不再起作用了。
我的问题:我在防火墙后面,只有 http 访问是可能的。https 访问似乎相当棘手,因为防火墙充当中间人:它解密来自/到 Internet 的所有 SSL 流量,并使用自己的用户证书再次对其进行加密。可以从已安装的 Web 浏览器中提取此证书。
在这些条件下,有没有办法建立与 GitHub 的工作连接?如果是,怎么做?
亲切的问候,马库斯
最后通过设置使其与https一起使用,git config --global http.sslVerify false因此公司证书被忽略。
git config --global http.sslVerify false