环境:ubuntu16.04
方法:通过socks5代理并且使用http链接
步骤:
1.设置全局使用socks5代理,并且使用http传输
git config --global http.proxy socks5://localhost:1080 (1080是设置的本地socks5
端口
,根据自己代理客户端设置的端口而定)
2.列出刚配置的设置情况
git config --global --list
3.如果要clone的git仓库链接为https://github.com/haha.git,要将https改为http,即为http://github.com/haha.git
4.可以直接clone了
注意事项:
1.当git pull时使用代理会出现以下错误提示:
jello@jello:~/linux$ git pull
fatal: unable to access 'http://github.com/torvalds/linux.git/': Failed to connect to localhost port 1080: Connection refused
2.解决方法:
2.1取消代理设置
git config --global --unset http.proxy