Git第七阶段:http/https proxy/ssh proxy/git proxy

一、http proxy | https proxy
git config --global http.proxy http://proxy.bizerba.com:8080
git config --global https.proxy https://proxy.bizerba.com:8080

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

二、ssh proxy(access your own git repo like git@github.com:user/yourrepo.git)
!!! generate ssh key, and upload public key to github,make you be able clone your repo like:
git clone git@github.com:user/yourrepo.git

but if you are behind a proxy , you need to:

windows 10:
在.ssh文件夹下面新建config文件,内容如下:

Host github.com
    ProxyCommand        connect -H user_ip:user_port %h %p
    ForwardAgent        yes

linux:
在.ssh文件夹下面新建config文件,内容如下:

Host github.com
    ProxyCommand          nc -X connect -x your_ip:your_port %h %p
    ServerAliveInterval   10

三、git proxy( optional to access git repo like git@github.com:user/yourrepo.git )
# step1: download socat | oe-git-proxy |
$ sudo apt-get install socat
$ wget http://git.yoctoproject.org/cgit/cgit.cgi/poky/plain/scripts/oe-git-proxy
$ cp oe-git-proxy ~/bin
$ chmod +x ~/bin/oe-git-proxy

# step2: modify proxy env
sudo vim .profile
export http_proxy=http://proxy.bizerba.com:xxxx
export https_proxy=https://proxy.bizerba.com:xxxx
export ftp_proxy=http://proxy.bizerba.com:xxxx
#export ALL_PROXY=socks://proxy.bizerba.com:xxxx
#export all_proxy=socks://proxy.bizerba.com:xxxx
export no_proxy=http://proxy.bizerba.com:xxxx

export GIT_PROXY_COMMAND="oe-git-proxy"
export NO_PROXY=$no_proxy

# step3: login
su - username

# step4: modify git proxy setting
git config --global core.gitproxy ~/bin/oe-git-proxy

其他思路:
git config --global url."https://".insteadOf git://

参考文献:
CMS Offline Software
Working Behind a Network Proxy - Yocto Project

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值