当前位置: 首页 > 工具软件 > httpproxy > 使用案例 >

Git 取消http proxy设置

钱稳
2023-12-01

>git config -l

........

.........
http.proxy=socks5://127.0.0.1:1080

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

>>git config -l

no http.proxy configuration

 

Git config 文件所在位置 on Mac OS, .gitconfig为隐藏文件,用 ls -al 来查看

>ls -al

/Users/lianghyan/.gitconfig

 

>cd /Users/lianghyan

>ls -al .gitconfig

-rw-r--r--  1 lianghyan  staff  312 Sep 30 23:17 .gitconfig

 

 类似资料: