JameyWoo / hello-world

a hello world repository for me to test
2 stars 1 forks source link

Git设置http及ssh代理 Win10与ubuntu18 - 姬小野的部落 #6

Open utterances-bot opened 4 years ago

utterances-bot commented 4 years ago

Git设置http及ssh代理 Win10与ubuntu18 - 姬小野的部落

https 代理 之前在网上一直用的是如下设置. 1 2 3 4 5 6 7 8 9 10 11 // 设置 http 代理 git config --global http.proxy "http://127.0.0.1:8080" git config --global https.proxy "http://127.0.0.1:8080" // 或者 socks5 代理 git config --global http.proxy "socks5://127.0.0.1:1080" git config --global https.proxy "socks5://127.0.0.1:1080" // 取消代理 git config --global --unset

http://localhost:1313/post/git%E8%AE%BE%E7%BD%AEssh%E4%BB%A3%E7%90%86-win10%E4%B8%8Eubuntu18.04/

JameyWoo commented 4 years ago

nice