`

bitbucket代理

    博客分类:
  • git
 
阅读更多
原文地址:http://segmentfault.com/q/1010000000118837





最近从 Bitbucket经常访问不了,Github拖代码的速度也抽风,什么原因大家都知道。
所以,最好的方法就是给Git设置代理了,我希望能指定部分仓库走代理方式,不知该如何设置?

补充另一种情况
本地环境下,本人设置了ssh代理,通过SOCKS走127.0.0.1:7070实现,如果在本地ssh代理开启的情况下,是不是又有另外的方法?

链接
2012年09月18日更新
Vegeta780
2012年09月18日提问
添加评论
得票数  时间先后
7 个回答
11


采纳
Git 目前支持的三种协议 git://、ssh:// 和 http://,其代理配置各不相同:core.gitproxy 用于 git:// 协议,http.proxy 用于 http:// 协议,ssh:// 协议的代理需要配置 ssh 的 ProxyCommand 参数。

对于所有的协议全部使用 SSH 隧道进行代理

GIT 协议的配置

建立 /path/to/socks5proxywrapper 文件,使用 https://bitbucket.org/gotoh/connect 工具进行代理的转换,各发行版一般打包为 proxy-connect 或者 connect-proxy。

#!/bin/sh
connect -S 127.0.0.1:7070 "$@"
配置 git

[core]
        gitproxy = /path/to/socks5proxywrapper
或者

export GIT_PROXY_COMMAND="/path/to/socks5proxywrapper"
SSH 协议的配置

建立 /path/to/soks5proxyssh 文件

#!/bin/sh
ssh -o ProxyCommand="/path/to/socks5proxywrapper %h %p" "$@"
配置 git 使用该 wrapper

export GIT_SSH="/path/to/socks5proxyssh“
当然也可以直接配置 ~/.ssh/config 的 ProxyCommand

HTTP 协议的配置

[http]
        #这里是因为 Git 使用 libcurl 提供 http 支持
        proxy = socks5://127.0.0.1:7070
所有协议全部使用 http 代理

在前一部分的基础上, /path/to/socks5proxywrapper 文件改为

#!/bin/sh
connect -H 192.168.1.100:8080 "$@"
HTTP 协议配置

[http]
    proxy = http://192.168.1.100:8080
针对域名启用代理

gitproxy 参数提供 * for * 结构,具体看 man git-config 的 core.gitproxy 部分。

链接
2013年05月27日更新
Techlive_Zheng1.7k
2012年10月27日回答
显示评论 (8条)
4


可以为该仓库设置 http.proxy 或者 core.gitproxy

git config http.proxy http://user:pwd@server.com:port
git config core.gitproxy '"proxy-command" for example.com'
http://www.kernel.org/pub/software/sc...

链接

yanyaoer1.6k
2012年09月18日回答
显示评论 (1条)
1


给git设置代理可以用yanyaoer的方法。
至于你说的ssh+pac+socks的代理,是跟yanyaoer说的git代理不冲突的。
socks代理是一个电路级的底层代理,而git config中设置的代理是应用级的。

举个例子,你的pac里设置了 github.com 走 socks 127.0.0.1:7070 ;而git config里有为github.com设置了走 proxy.server.com 的代理。
那么这个时候,你进行git操作,所有的网络请求走到socks那一层的时候,已经是proxy.server.com了,自然就不受影响,会直接出去。

链接

liz194
2012年09月18日回答
添加评论
1


tsocks - http://tsocks.sourceforge.net/

$ tsocks git clone git@github.com:xxx/xxx.git

链接

饭团44
2012年09月18日回答
添加评论
1


从bitbucket克隆用ssh协议的话可以用所有ssh的代理使用方式

比如如果是http代理或socks代理,可以使用 http://bent.latency.net/bent/git/goto... 这个小程序做主机的ProxyCommand

如果是你说的有某个中转服务器的话,可以用远程主机上的nc做ProxyCommand http://www.undeadly.org/cgi?action=ar...

关于你说的区分流量,可以在~/.ssh/config里进行区别设置。例如我之前用的配置

Host bitbucket.org
    ProxyCommand ~/.ssh/connect -H 192.168.1.106:3128 %h 22
这样git clone ssh://git@bitbucket.org/XXXX时会自动调用这里定义的ProxyCommand

链接

yegle2k
2012年09月25日回答
添加评论
1


github ssh proxy | github ssh 协议代理配置

配置一个 proxy-wrapper 脚本

bash
cat > $HOME/bin/proxy-wrapper
#!/bin/bash
nc -x127.0.0.1:7080 -X5 $*
给它增加一个可执行权限

bash
$ chmod +x $HOME/bin/proxy-wrapper
配置 .ssh/config , 对 github.com 设置一个代理命令

bash
Host github github.com
    Hostname github.com
    User git
    ProxyCommand $HOME/bin/proxy-wrapper '%h %p'
必须全部走ssh协议

bash
$ git clone git@github.com:jjrdn/node-open.git
git 协议请参考 [Using GIT through a SOCKS proxy](http://twopenguins.org/tips/git-throu...).

参考

[如何为 Git 设置代理?](http://segmentfault.com/q/10100000001...)
[Using GIT through a SOCKS proxy](http://twopenguins.org/tips/git-throu...)
[免费的ssh](http://milnk.com/link/10645)
链接

fenbox3.1k
2013年01月22日更新
Python发烧友64
2013年01月22日回答
显示评论 (1条)
1


根据1L的答案写了一个smart_switcher,可以自动判别并设置各种代理,基于http代理配置,特别适合office有代理、家里无代理各种切换的情况,不过简化到超简单,只需设置你的网关IP和Port即可。
ReadMe在此。。。

smart_switcher

A auto-detect proxy switcher fot http, https, ftp, rsync, ssh, git protocols.

Overview

A smart proxy switcher wrapper, supports http, https, ftp, rsync, ssh(connect depanded), git(connect depanded) protocols. It can automatically detect your network environment and set proxy for you.

If you usually switch the network environment (maybe home with no-proxy and workplace with proxy), it may help you a lot.

Tested in zsh and bash.

Screenshot

screenshot

Install

Simply source it in your .zshrc, or any shell script resource file like this:

source /path/to/smart_switcher.sh

and, make sure set your proxy_server/gateway in smart_switcher.sh.

Usage

Normally, it antomatically executes when you login in.

smart_switcher supports cecho, who will bring some colors for you.

connect is required if proxy is supported in ssh and git. You can install it easily in path /usr/bin/connect.

链接
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics