git设置http代理
临时代理
$ export http_proxy="http://127.0.0.1:12333" $ export https_proxy="http://127.0.0.1:12333"
永久代理
$ git config --global http.proxy http://127.0.0.1:12333 $ git config --global https.proxy http://127.0.0.1:12333
这种方法相当于在.gitconfig文件中写入:
[http] proxy = http://127.0.0.1:12333 [https] proxy = http://127.0.0.1:12333
相关推荐
yanghui0 2020-06-20
sicceer 2020-05-28
似水流年梦 2020-05-12
gdb 2020-05-08
zhaolisha 2020-05-06
wanghongsha 2020-04-19
hygbuaa 2020-02-26
用不完的好奇心 2020-02-13
wanghongsha 2020-01-17
zhglinux 2020-01-09
zhaolisha 2019-12-21
powerfj 2019-11-19
hygbuaa 2019-11-18
笑面依旧 2019-11-17
一世为白 2019-11-16
OwenJi 2019-11-15