-
自己的项目提交时出现了git代理问题如下
拉取公司项目时也出现问题
相比较而言,都出现了could not resolve proxy: ""
解决方法:
1.查看git代理:
git config -l
2.前往文件夹
~/.gitconfig
将gitconfig文件内容修改为
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[user]
name = yourName
email = yourEmail
[http]
sslVerify = false
[http "https://github.com"]
proxy = socks5://127.0.0.1:1086
其中 [filter "lfs"]、[http]、[http "https://github.com"]可以不用要