码迷,mamicode.com
首页 > 系统相关 > 详细

using git with proxy in ubuntu

时间:2015-09-22 16:51:05      阅读:263      评论:0      收藏:0      [点我收藏+]

标签:

如果是 git clone http:// 或 git clone https:// 的话直接把代理服务器加到环境变量就可以了:

$ export http_proxy="http://username:password@squid.vpsee.com:3128/"
$ export https_proxy="http://username:password@squid.vpsee.com:3128/"

如果是 git clone git:// 的话麻烦一些(可能有的 git 源不提供 http/https 的方式),需要先安装 socat,安装路径在 usr/share/doc/socat 

然后创建一个叫做 gitproxy 的脚本并填上合适的服务器地址、端口号等,最后配置 git 使用 gitproxy 脚本: 

$ sudo apt-get install socat

$ sudo vi /usr/bin/gitproxy
#!/bin/bash

PROXY=squid.vpsee.com
PROXYPORT=3128
PROXYAUTH=username:password
exec socat STDIO PROXY:$PROXY:$1:$2,proxyport=$PROXYPORT,proxyauth=$PROXYAUTH

$ sudo  chmod +x /usr/share/doc/socat/gitproxy

$ git config --global core.gitproxy /usr/share/doc/socat/gitproxy


using git with proxy in ubuntu

标签:

原文地址:http://my.oschina.net/duanfangwei/blog/509615

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!