git clone unable to connect的排错记录

git clone unable to connect…的排错记录

用的好好的,突然 git clone 死活拉取不了代码。。。
排查思路,首先执行 git config --global -l查看配置是否正确

user.name=183xxxx9064
user.email=xxx@comg
credential.helper=store
url.git://.insteadof=https://
url.https://.insteadof=git://

果然多了两项url.git://.insteadofurl.https://.insteadof配置,意思就是git开头被替换为https:,https开头被替换为git,无语不!
现在,立刻把这两项数据去掉!

git config --global --unset-all url.git://.insteadof
git config --global --unset-all url.https://.insteadof

--unset-all根据-h的提示,会匹配其开头的数据。


版权声明:本文为Min_Chander原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。