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的提示,会匹配其开头的数据。

上一篇:git分支拉取时无法获取到所有的分支内容


下一篇:原型模式