Post

Git设置goagent代理

git代理

1
2
3
git config --global http.proxy 127.0.0.1:8087
git config --global https.proxy 127.0.0.1:8087
git config --global http.sslCAinfo GoAgent/CA.crt

取消代理

1
2
3
git config --global http.proxy ""
git config --global https.proxy ""
git config --global http.sslCAinfo ""
This post is licensed under CC BY 4.0 by the author.