背景:自从两年前开始注意收集Git方面的使用点滴以来,已经大大小小积累了十几个注意事项,本想集中起来写篇Git使用手册
,无奈一直抽不出时间。索性把每个点单独写出。本文贡献一个一键打开socks5代理的方法:
#!/bin/bash
case $1 in
on)
git config --global http.proxy 'socks5://127.0.0.1:1080'
git config --global https.proxy 'socks5://127.0.0.1:1080'
;;
off)
git config --global --unset http.proxy
git config --global --unset https.proxy
;;
status)
git config --get http.proxy
git config --get https.proxy
;;
esac
exit 0
将上述文件保存为gitproxy
,注意不要带任何后缀,将其复制到/usr/local/bin
,增加可执行权限即可。
使用说明
打开socks5代理
gitproxy on
关闭socks5代理
gitproxy off
查看socks5状态
gitproxy status