码迷,mamicode.com
首页 > 其他好文 > 详细

给git配置http代理

时间:2014-05-09 16:12:51      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:http   c   get   文件   使用   a   

1. 安装socat

apt-get install socat

2. 创建配置文件,取名gitproxy
填入以下内容:


#!/bin/sh
_proxy=135.245.48.33
_proxyport=8000

exec socat STDIO PROXY:$_proxy:$1:$2,proxyport=$_proxyport

 

加上可执行权限chmod +x gitproxy,将此文件放在环境变量$PATH中的某个位置


3. 执行 git config --global core.gitproxy gitproxy

OK,现在可以使用git clone 从git://的URL获取代码了

给git配置http代理,布布扣,bubuko.com

给git配置http代理

标签:http   c   get   文件   使用   a   

原文地址:http://www.cnblogs.com/laocius/p/3718244.html

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