重装git后路径问题记录一下 着找哪里配置文件或者路径变了,可能重启一下就好了。2.这个弄完了后,又发现git克隆不了,百度查着暴力解决方案是直接忽视证书gitconfig--globalhttp.sslVerify false 执行的确能解决问题,但显然这样做不好。 这个时候回过头来,发现还是一个路径问题当我使用gitconfig--globalhttp.sslcainfo...
[core] gitproxy=proxy-command for kernel.org gitproxy=default-proxy ; for all the rest ; HTTP [http] sslVerify [http "https://weak.example.com"] sslVerify = false cookieFile = /tmp/cookie.txt you can set the filemode to true with % git config core.filemode true The hypothetical proxy...
% git config get --type=bool --url=https://good.example.com http.sslverify true % git config get --type=bool --url=https://weak.example.com http.sslverify false % git config get --url=https://weak.example.com http http.cookieFile /tmp/cookie.txt http.sslverify false ...
others: % git config --bool --get-urlmatch http.sslverify https://good.example.com true % git config --bool --get-urlmatch http.sslverify https://weak.example.com false % git config --get-urlmatch http https://weak.example.com http.cookieFile /tmp/cookie.txt http.sslverify false ...