Git 使用技巧 (2)

只针对github 做代理

# socks5 git config --global http.https://github.com.proxy socks5://127.0.0.1:1086 git config --global https.https://github.com.proxy socks5://127.0.0.1:1086 # http git config --global http.https://github.com.proxy https://127.0.0.1:1087 git config --global https.https://github.com.proxy https://127.0.0.1:1087

只配置单个项目下git配置

进入到项目的.git文件里面 例如:git config 不加--global http.https://github.com.proxy https://127.0.0.1:1087

SSH 形式

修改 ~/.ssh/config 文件(不存在则新建):

ProxyCommand nc -x localhost:1086 %h %p

查看配置

git config --global --list

修改配置

git config --global --edit

取消设置

git config --global --unset http.proxy git config --global --unset https.proxy

iterm2里面使用 在.zshrc 里面加入 source ~/.zshrc

使用 curl myip.ipip.net 测试自己的ip 是否变了

alias proxy="export ALL_PROXY=socks5://127.0.0.1:1086" alias unproxy="unset ALL_PROXY"

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zwydzw.html